/* Estilos específicos para la página de tokenización */

.tokenization-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 161, 155, 0.6) 100%), url('/api/placeholder/1920/800');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tokenization-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.tokenization-hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--blanco);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tokenization-hero p {
    font-size: 20px;
    color: var(--plata);
    margin-bottom: 30px;
    line-height: 1.6;
}

.tokenization-content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Descripción del servicio */
.tokenization-description {
    margin-bottom: 60px;
    line-height: 1.8;
}

.tokenization-description p {
    color: var(--plata);
    margin-bottom: 25px;
    font-size: 18px;
}

.tokenization-description .highlight-text {
    font-size: 22px;
    color: var(--blanco);
    border-left: 4px solid var(--verde);
    padding-left: 20px;
    margin: 40px 0;
}

/* Beneficios de la tokenización */
.tokenization-benefits {
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(200, 204, 206, 0.1);
    border-bottom: 3px solid var(--verde);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    background-color: rgba(0, 161, 155, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon img {
    width: 40px;
    height: auto;
}

.benefit-card h3 {
    color: var(--blanco);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--plata);
    font-size: 16px;
    line-height: 1.6;
}

/* Tipos de activos tokenizables */
.tokenizable-assets {
    margin-bottom: 80px;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.asset-type {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 204, 206, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
}

.asset-type:hover {
    background-color: rgba(0, 161, 155, 0.1);
    transform: translateY(-5px);
}

.asset-type h3 {
    color: var(--verde);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.asset-type h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--verde);
    bottom: 0;
    left: 0;
}

.asset-type p {
    color: var(--plata);
    font-size: 16px;
    line-height: 1.6;
}

/* Nuestras soluciones */
.tokenization-solutions {
    margin-bottom: 80px;
}

.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solution-item {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 204, 206, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

.solution-item:hover {
    background-color: rgba(0, 161, 155, 0.1);
    transform: translateX(10px);
}

.solution-icon {
    flex-shrink: 0;
    background-color: rgba(0, 161, 155, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.solution-icon img {
    width: 50px;
    height: auto;
}

.solution-content {
    flex-grow: 1;
}

.solution-content h3 {
    color: var(--verde);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.solution-content p {
    color: var(--plata);
    font-size: 16px;
    line-height: 1.6;
}

/* Casos de éxito */
.success-cases {
    margin-bottom: 80px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(200, 204, 206, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 20px;
}

.case-content h3 {
    color: var(--blanco);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.case-content p {
    color: var(--plata);
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background-color: rgba(0, 161, 155, 0.1);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #01f5d0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--blanco);
}

.cta p {
    color: var(--plata);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .benefits-grid,
    .assets-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-item {
        flex-direction: column;
        text-align: center;
    }
    
    .solution-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .tokenization-hero h1 {
        font-size: 40px;
    }
    
    .tokenization-hero p {
        font-size: 18px;
    }
    
    .tokenization-description p,
    .tokenization-description .highlight-text {
        font-size: 16px;
    }
    
    .benefits-grid,
    .assets-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tokenization-hero {
        height: 50vh;
    }
    
    .tokenization-hero h1 {
        font-size: 32px;
    }
    
    .tokenization-hero p {
        font-size: 16px;
    }
    
    .tokenization-content {
        padding: 60px 5%;
    }
    
    .benefit-icon,
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon img,
    .solution-icon img {
        width: 30px;
    }
    
    .benefit-card h3,
    .asset-type h3,
    .solution-content h3,
    .case-content h3 {
        font-size: 18px;
    }
}