/* Estilos para páginas de Productores CeTYM */

/* Estilos generales */
body {
    overflow-x: hidden;
}

.cetym-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Asegurar que el menú desplegable aparezca por encima - Reset de z-index para la sección hero */
.cetym-hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    background-attachment: fixed !important; /* Efecto parallax solo para esta sección */
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden;
    padding-bottom: 50px;
    z-index: 1; /* Valor bajo para permitir que el menú aparezca por encima */
}

.cetym-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(7, 48, 56, 0.7), rgba(28, 115, 50, 0.5));
    z-index: 2; /* Más bajo que el contenido del hero, pero más alto que la sección base */
}

.cetym-hero-content {
    position: relative;
    z-index: 3; /* Valor medio, suficiente para estar sobre el overlay pero por debajo del menú */
    max-width: 800px;
    padding: 0 30px;
    animation: fadeInUp 1s ease-out;
    padding-top: 80px; /* Espacio adicional para evitar que el contenido se solape con el menú */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cetym-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.cetym-hero-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.5));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.cetym-hero-description {
    font-size: 1.6rem;
    margin: 35px auto 0;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    padding: 0 20px;
    position: relative;
}

.cetym-hero-description::before,
.cetym-hero-description::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.6);
    top: 50%;
}

.cetym-hero-description::before {
    left: -10px;
    transform: translateX(-100%);
}

.cetym-hero-description::after {
    right: -10px;
    transform: translateX(100%);
}

/* Sección de Productores */
.cetym-productores-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Sin superposición */
    border-top: 4px solid #1C7332; /* Color verde yerba mate */
    z-index: 4; /* Asegurar que está por encima de la sección hero */
}

/* Fondos de secciones */
#certificados-section {
    background: linear-gradient(135deg, rgba(28, 115, 50, 0.05) 0%, rgba(136, 191, 84, 0.15) 100%);
}

#obtener-certificado-section {
    background: linear-gradient(135deg, #f0f4f8 0%, rgba(136, 191, 84, 0.2) 100%);
}

#registrar-produccion-section {
    background: linear-gradient(135deg, rgba(28, 115, 50, 0.1) 0%, rgba(136, 191, 84, 0.2) 100%);
}

/* Subtítulo de sección */
.cetym-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #1C7332;
    margin: -35px auto 50px;
    font-weight: 500;
}

/* Título del proceso paso a paso */
.cetym-process-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #073038;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.cetym-process-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1C7332, #88BF54);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.cetym-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 45px;
    color: #1C7332; /* Color verde yerba mate */
    position: relative;
    margin-top: 20px;
}

/* Estilo especial para el título de Beneficios ATM */
#productores-section .cetym-section-title {
    color: #2E4160;
}

#productores-section .cetym-section-title:after {
    background: linear-gradient(90deg, #2E4160, #007EBD);
    box-shadow: 0 2px 5px rgba(46, 65, 96, 0.3);
}

.cetym-section-title:after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #1C7332, #88BF54);
    margin: 20px auto 0;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(28, 115, 50, 0.3);
}

.cetym-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.cetym-card {
    background-color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    padding: 40px 30px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.cetym-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1C7332, #88BF54);
}

.cetym-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cetym-icon-wrapper {
    margin-bottom: 25px;
    position: relative;
}

.cetym-card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(136, 191, 84, 0.3) 0%, rgba(28, 115, 50, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(28, 115, 50, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cetym-card:hover .cetym-card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(136, 191, 84, 0.4) 0%, rgba(28, 115, 50, 0.2) 100%);
}

.cetym-card-icon i {
    font-size: 46px;
    color: #1C7332;
    transition: all 0.3s ease;
}

.cetym-card:hover .cetym-card-icon i {
    color: #073038;
}

.cetym-card-number {
    background: linear-gradient(90deg, #1C7332, #88BF54);
    color: #fff;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(28, 115, 50, 0.2);
    letter-spacing: 0.5px;
}

.cetym-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1C7332;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 15px;
}

.cetym-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #88BF54;
    transition: width 0.3s;
}

.cetym-card:hover .cetym-card-title::after {
    width: 60px;
}

.cetym-card:hover .cetym-card-title {
    color: #073038;
}

/* Estilos específicos para el card de Otros Productores Primarios */
a[href="../productores-primarios/"].cetym-card::before {
    background: linear-gradient(90deg, #2E4160, #9A2660);
}

a[href="../productores-primarios/"].cetym-card .cetym-card-icon {
    background: linear-gradient(135deg, rgba(0, 126, 189, 0.3) 0%, rgba(46, 65, 96, 0.1) 100%);
}

a[href="../productores-primarios/"].cetym-card:hover .cetym-card-icon {
    background: linear-gradient(135deg, rgba(0, 126, 189, 0.4) 0%, rgba(46, 65, 96, 0.2) 100%);
}

a[href="../productores-primarios/"].cetym-card .cetym-card-icon i {
    color: #2E4160;
}

a[href="../productores-primarios/"].cetym-card:hover .cetym-card-icon i {
    color: #9A2660;
}

a[href="../productores-primarios/"].cetym-card .cetym-card-number {
    background: linear-gradient(90deg, #2E4160, #007EBD);
}

a[href="../productores-primarios/"].cetym-card .cetym-card-title {
    color: #2E4160;
}

a[href="../productores-primarios/"].cetym-card:hover .cetym-card-title {
    color: #9A2660;
}

a[href="../productores-primarios/"].cetym-card .cetym-card-title::after {
    background-color: #007EBD;
}

/* Estilos para listas de pasos */
.cetym-step-list,
.cetym-info-list {
    text-align: left;
    padding-left: 20px;
    margin: 10px 0;
}

.cetym-step-list li,
.cetym-info-list li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
    padding-left: 20px;
}

.cetym-step-list li::before,
.cetym-info-list li::before {
    content: '•';
    color: #88BF54;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cetym-step-list li ul {
    padding-left: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.cetym-step-list li ul li {
    margin-bottom: 5px;
}

.cetym-step-list li ul li::before {
    content: '○';
}

/* Estilos para información de certificado */
.cetym-certificate-info {
    margin: 60px auto 30px;
    max-width: 700px;
    position: relative;
}

.cetym-certificate-info .cetym-info-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(28, 115, 50, 0.15);
    padding: 40px 30px;
    border: 1px solid rgba(136, 191, 84, 0.4);
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.cetym-certificate-info .cetym-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(28, 115, 50, 0.2);
}

.cetym-certificate-info .cetym-info-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1C7332, #88BF54);
    border-radius: 20px 20px 0 0;
}

.cetym-certificate-info .cetym-info-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1C7332 0%, #88BF54 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(28, 115, 50, 0.2);
    position: relative;
    z-index: 1;
}

.cetym-certificate-info .cetym-info-icon i {
    font-size: 40px;
    color: #fff;
}

.cetym-certificate-info h3 {
    color: #073038;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.cetym-certificate-info h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #1C7332, #88BF54);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.cetym-certificate-info p {
    text-align: center;
    font-weight: 600;
    color: #1C7332;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.cetym-certificate-info .cetym-info-list {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(136, 191, 84, 0.2);
    position: relative;
    z-index: 1;
    margin-top: 25px;
}

.cetym-certificate-info .cetym-info-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.5;
    color: #073038;
}

.cetym-certificate-info .cetym-info-list li:last-child {
    margin-bottom: 0;
}

.cetym-certificate-info .cetym-info-list li::before {
    content: '✓';
    color: #1C7332;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Nota importante */
.cetym-important-note {
    background-color: rgba(136, 191, 84, 0.15);
    border-left: 5px solid #1C7332;
    padding: 15px 20px;
    margin: 30px auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.cetym-important-note i {
    color: #1C7332;
    font-size: 24px;
    margin-right: 15px;
}

.cetym-important-note p {
    color: #073038;
    font-weight: 700;
    margin: 0;
    font-size: 1rem;
}

/* Eslogan */
.cetym-slogan {
    text-align: center;
    margin: 40px auto 20px;
}

.cetym-slogan p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1C7332;
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(136, 191, 84, 0.2) 0%, rgba(28, 115, 50, 0.1) 100%);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(28, 115, 50, 0.1);
}

/* Nuevos estilos para la página de Productores Yerbateros */

/* Botones */
.btn-cetym-primary {
    display: inline-block;
    background: linear-gradient(90deg, #1C7332, #88BF54);
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(28, 115, 50, 0.2);
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-cetym-primary:hover {
    background: linear-gradient(90deg, #155a28, #73a13f);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(28, 115, 50, 0.3);
    color: white;
}

.btn-cetym-secondary {
    display: inline-block;
    background: transparent;
    color: #1C7332;
    font-weight: 600;
    padding: 11px 25px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 2px solid #1C7332;
    cursor: pointer;
    text-align: center;
    margin-left: 15px;
}

.btn-cetym-secondary:hover {
    background: rgba(28, 115, 50, 0.05);
    color: #073038;
    border-color: #073038;
}

/* Contenedor CTA */
.cetym-cta-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Contenedor de pasos */
.cetym-steps-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.cetym-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
}

.cetym-step:last-child {
    margin-bottom: 0;
}

/* Línea conectora entre pasos */
.cetym-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 35px;
    height: calc(100% - 30px);
    width: 2px;
    background: linear-gradient(to bottom, #1C7332, #88BF54);
}

.cetym-step-number {
    background: linear-gradient(135deg, #1C7332, #88BF54);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(28, 115, 50, 0.2);
    flex-shrink: 0;
}

.cetym-step-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(136, 191, 84, 0.3);
    backdrop-filter: blur(10px);
}

.cetym-step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cetym-step-content h3 {
    color: #1C7332;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.cetym-step-content p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

/* Grid de información */
.cetym-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.cetym-info-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(28, 115, 50, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(136, 191, 84, 0.3);
    backdrop-filter: blur(10px);
}

.cetym-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cetym-info-icon {
    background: linear-gradient(135deg, #1C7332 0%, #88BF54 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.cetym-info-item:hover .cetym-info-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #155a28 0%, #73a13f 100%);
}

.cetym-info-icon i {
    font-size: 35px;
    color: #fff;
    transition: all 0.3s ease;
}

.cetym-info-item h3 {
    color: #1C7332;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.cetym-info-item p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Estilos de párrafos dentro de las tarjetas */
.cetym-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsividad */
@media (max-width: 768px) {
    .cetym-hero-section {
        background-attachment: scroll !important; /* Deshabilitar parallax en móviles */
        height: 500px;
        padding-bottom: 40px;
    }

    .cetym-hero-content {
        padding-top: 60px; /* Menos espacio en móviles */
    }

    .cetym-hero-title {
        font-size: 3rem;
    }

    .cetym-hero-description {
        font-size: 1.2rem;
    }

    .cetym-hero-description::before,
    .cetym-hero-description::after {
        display: none; /* Ocultar líneas en móviles */
    }

    .cetym-section-title {
        font-size: 2.2rem;
    }

    .cetym-subtitle {
        font-size: 1.1rem;
        margin: -30px auto 40px;
    }

    .cetym-process-title {
        font-size: 1.5rem;
    }

    .cetym-card {
        max-width: 100%;
    }

    .cetym-productores-section {
        padding: 70px 0;
        margin-top: 0;
    }

    .cetym-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
    }

    .cetym-step-number {
        margin-bottom: 15px;
    }

    .cetym-step:not(:last-child)::after {
        display: none;
    }

    .btn-cetym-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .cetym-cta-container {
        flex-direction: column;
        align-items: center;
    }

    .cetym-important-note {
        flex-direction: column;
        text-align: center;
    }

    .cetym-important-note i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .cetym-slogan p {
        font-size: 1.1rem;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .cetym-hero-section {
        height: 450px;
        padding-bottom: 30px;
    }

    .cetym-hero-content {
        padding-top: 50px; /* Aún menos espacio en móviles pequeños */
    }

    .cetym-hero-title {
        font-size: 2.2rem;
    }

    .cetym-hero-description {
        font-size: 1.1rem;
        margin-top: 25px;
    }

    .cetym-productores-section {
        padding: 60px 0;
        margin-top: 0;
    }

    .cetym-subtitle {
        font-size: 1rem;
        margin: -20px auto 30px;
    }

    .cetym-process-title {
        font-size: 1.3rem;
    }

    .cetym-card-icon {
        width: 80px;
        height: 80px;
    }

    .cetym-card-icon i {
        font-size: 36px;
    }

    .cetym-info-grid {
        grid-template-columns: 1fr;
    }

    .cetym-certificate-info h3 {
        font-size: 1.4rem;
    }

    .cetym-certificate-info p {
        font-size: 1rem;
    }
}

/* Estilos para notas dentro de pasos */
.cetym-step-note {
    font-style: italic;
    color: #666;
    margin-top: 15px;
    font-size: 0.9rem;
    border-left: 3px solid #88BF54;
    padding-left: 10px;
}

/* Mensaje de éxito */
.cetym-step-success {
    font-weight: 700;
    color: #1C7332;
    margin-top: 15px;
    font-size: 1.2rem;
    text-align: center;
    display: inline-block;
    background-color: rgba(136, 191, 84, 0.1);
    padding: 5px 20px;
    border-radius: 5px;
    width: 100%;
}

/* Nota de validación */
.cetym-validation-note {
    background-color: rgba(136, 191, 84, 0.08);
    border-radius: 10px;
    padding: 20px;
    margin: 40px auto 20px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(28, 115, 50, 0.1);
    backdrop-filter: blur(5px);
}

.cetym-validation-note p {
    margin: 5px 0;
    color: #1C7332;
    font-size: 1.1rem;
}

.cetym-validation-note p:last-child {
    font-weight: 600;
    color: #073038;
}

/* Nota con icono - Estilo especial para el recuadro con bombilla */
.cetym-validation-note.with-icon {
    position: relative;
    overflow: hidden;
    padding: 20px 30px 20px 20px;
}

.cetym-validation-note.with-icon i {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    color: #558A37;
    opacity: 0.2;
    z-index: 0;
}

.cetym-validation-note.with-icon p {
    position: relative;
    z-index: 1;
    padding-right: 20px;
    font-weight: 600;
}

/* Ajustes específicos para sección de requisitos */
.cetym-requisitos {
    margin-bottom: 60px;
}

.cetym-requisitos .cetym-info-item {
    padding: 25px 20px;
    min-height: auto;
}

.cetym-requisitos .cetym-info-icon {
    margin-bottom: 15px;
}

.cetym-requisitos h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Ajustes responsivos para los nuevos elementos */
@media (max-width: 768px) {
    .cetym-step-success {
        font-size: 1.1rem;
    }

    .cetym-validation-note {
        padding: 15px;
    }

    .cetym-validation-note p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cetym-step-success {
        font-size: 1rem;
        padding: 5px 15px;
    }

    .cetym-validation-note p {
        font-size: 0.95rem;
    }

    .cetym-requisitos .cetym-info-item {
        padding: 20px 15px;
    }

    .cetym-requisitos h3 {
        font-size: 1rem;
    }
}

/* Estilos para el logo de CeTYM */
.cetym-logo-container {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    max-width: 150px;
    border-radius: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cetym-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cetym-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Logo en tamaños pequeños de pantalla */
@media (max-width: 768px) {
    .cetym-logo-container {
        bottom: 20px;
        right: 20px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .cetym-logo-container {
        bottom: 15px;
        right: 15px;
        max-width: 100px;
    }
}

/* Versión pequeña del logo para las secciones */
.cetym-section-logo {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cetym-section-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .cetym-section-logo {
        width: 60px;
        top: 20px;
        right: 20px;
    }
}

/* Sección CTA para redirección al sitio web oficial */
.cetym-website-cta {
    background: linear-gradient(135deg, rgba(28, 115, 50, 0.9) 0%, rgba(7, 48, 56, 0.9) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border-top: 2px solid #88BF54;
}

.cetym-website-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="50" height="50" fill="rgba(255,255,255,0.03)"/><rect x="50" y="50" width="50" height="50" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.cetym-website-cta .cetym-container {
    position: relative;
    z-index: 1;
}

.cetym-website-cta-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cetym-website-cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cetym-website-link {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: #1C7332;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.cetym-website-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    color: #073038;
    border-color: #88BF54;
}

.cetym-website-link i {
    margin-left: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cetym-website-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cetym-website-cta {
        padding: 50px 0;
    }

    .cetym-website-cta-title {
        font-size: 1.8rem;
    }

    .cetym-website-cta-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .cetym-website-cta {
        padding: 40px 0;
    }

    .cetym-website-cta-title {
        font-size: 1.5rem;
    }

    .cetym-website-cta-description {
        font-size: 1rem;
    }

    .cetym-website-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
