/* Estilos específicos para la página de certificación */

.certification-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;
}

.certification-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.certification-hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--blanco);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.certification-hero p {
    font-size: 20px;
    color: var(--plata);
    margin-bottom: 30px;
    line-height: 1.6;
}

.certification-content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Descripción del servicio */
.certification-description {
    margin-bottom: 60px;
    line-height: 1.8;
}

.certification-description p {
    color: var(--plata);
    margin-bottom: 25px;
    font-size: 18px;
}

.certification-description .highlight-text {
    font-size: 22px;
    color: var(--blanco);
    border-left: 4px solid var(--verde);
    padding-left: 20px;
    margin: 40px 0;
}

/* Características del servicio */
.certification-features {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-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;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-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;
}

.feature-icon img {
    width: 40px;
    height: auto;
}

.feature-card h3 {
    color: var(--blanco);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--plata);
    font-size: 16px;
    line-height: 1.6;
}

/* Casos de uso */
.use-cases {
    margin-bottom: 80px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.use-case {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 204, 206, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
}

.use-case:hover {
    background-color: rgba(0, 161, 155, 0.1);
    transform: translateY(-5px);
}

.use-case h3 {
    color: var(--verde);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.use-case h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--verde);
    bottom: 0;
    left: 0;
}

.use-case p {
    color: var(--plata);
    font-size: 16px;
    line-height: 1.6;
}

/* Proceso de certificación */
.certification-process {
    margin-bottom: 80px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: rgba(200, 204, 206, 0.2);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 180px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--verde);
    color: var(--negro);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--blanco);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    color: var(--plata);
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section modificado */
.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) {
    .features-grid,
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 40px;
        width: 45%;
    }
}

@media (max-width: 768px) {
    .certification-hero h1 {
        font-size: 40px;
    }
    
    .certification-hero p {
        font-size: 18px;
    }
    
    .certification-description p,
    .certification-description .highlight-text {
        font-size: 16px;
    }
    
    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .certification-hero {
        height: 50vh;
    }
    
    .certification-hero h1 {
        font-size: 32px;
    }
    
    .certification-hero p {
        font-size: 16px;
    }
    
    .certification-content {
        padding: 60px 5%;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon img {
        width: 30px;
    }
    
    .feature-card h3,
    .use-case h3 {
        font-size: 18px;
    }
}