body {
    font-family: "Roboto", sans-serif;
}

img {
    max-width: 100%;
}

p {
    font-weight: 300;
}

.container {
    max-width: 1140px;
}

.btn.btnKibernum {
    background: #01424C;
    color: #FFFFFF;
    font-size: 0.8669rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-style: normal;
    min-width: 10rem;
    border-radius: 5px;
    text-transform: uppercase;
}

.btn.btnKibernum:hover {
    background: #FFFFFF;
    color: #01424C;
}

.btn.btnKibernum.btnKibBlanco {
    background: #FFFFFF;
    color: #01424C;
}

.btn.btnKibernum.btnKibBlanco:hover {
    background: #000;
    color: #fff;
}

.btn.btnKibernum.btnEbook {
    color: #fff;
    background: transparent;
    text-decoration: underline;
}

.btnes_flex {
    display: flex;
    gap: 20px;
}

.tits_secciones {
    font-size: 34px;
    line-height: 41px;
    text-transform: uppercase;
}

.tits_secciones.tit_transf_none {
    text-transform: none;
}

.pre_tit {
    color: #01424C;
    font-size: 15px;
    line-height: 1;
    display: block;
    text-transform: uppercase;
}

.cta {
    max-width: 600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cta_text {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

header {
    position: absolute;
    width: 100%;
    padding: 10px 0;
}

.section {
    padding: 80px 0;
}

.logo {
    max-width: 250px;
}

.ppal {
    padding: 0;
    background: linear-gradient(to top, #111111c7, #1111113d), url(../img/BG-IA-WEEK-central-03.png) no-repeat center center;
    background-size: cover;
    min-height: 90vh;
}

.ppal>.container>.row {
    height: 100%;
}

h1 {
    color: #fff;
    font-size: 64px;
    line-height: 1.1;
    padding-right: 50px;
    text-align: center;
    padding: 0 20%;
    font-weight: 700;
}

h1 .mi-subtitulo {
    display: block;
    font-size: 20px;
    /* O el tamaño que quieras */
    font-weight: 400;
    color: #DEE0FF;
}

.img_partner {
    width: 100%;
}

.img_partner img {
    max-width: 200px;
    border-radius: 100px;
    margin-top: 2%;
}

.ppal p {
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    padding-right: 30px;
    font-weight: 500;
}

.iconos_ppal {
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}

.icono_ppal {
    color: #fff;
    text-align: center;
    gap: 10px;
    align-items: center;
}

.icono_ppal i {
    color: #DEE0FF;
}


/** contador **/
.contador {
    background: linear-gradient(to left, #d16ef5, #7d0f9e);
    padding: 30px 0;
    color: #fff;
}

#countdown {
    display: flex;
    justify-content: center;
}

.contador ul {
    padding: 0;
}

.contador li {
    display: inline-block;
    font-size: 1em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
    text-align: center;
}

.contador li span {
    display: block;
    font-size: 4rem;
}

.emoji {
    display: none;
    padding: 1rem;
}

.emoji span {
    font-size: 4rem;
    padding: 0 .5rem;
}

@media all and (max-width: 768px) {
    .contador h2 {
        font-size: calc(1.5rem * var(--smaller));
    }

    .contador li {
        font-size: 15px;
    }

    .contador li span {
        font-size: 35px;
    }
}

.video_webinar {
    padding: 120px 0;
    background: #000 url() no-repeat right center;
    background-size: contain;
    position: relative;
    z-index: 1;
}

.texto_bg {
    font-size: 180px;
    line-height: 150px;
    width: 60%;
    color: #000;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 30px;
    -webkit-text-stroke: 3px #ffffff24;
    text-transform: uppercase;
    z-index: -1;
}

.text_destacado {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
}

.text_destacado span {
    display: block;
    font-size: 40px;
    line-height: 50px;
}

.video_webinar p {
    color: #fff;
    font-size: 15px;
}

/* Video Premium Glow Container */
.contenedor_video {
    position: relative;
    border-radius: 20px;
    padding: 3px;
    /* Space for the glowing gradient border */
    background: linear-gradient(135deg, rgba(202, 220, 216, 0.4), rgba(1, 66, 76, 0.6), rgba(125, 15, 158, 0.6));
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    box-shadow: 0 0 50px rgba(125, 15, 158, 0.2), 0 0 100px rgba(1, 66, 76, 0.4);
    isolation: isolate;
    transform-style: preserve-3d;
    will-change: transform;
}

.contenedor_video iframe {
    border-radius: 18px;
    z-index: 2;
    position: relative;
    display: block;
    background: #000;
}

/* Pseudo-element to emulate the sphere's ethereal light behind the video */
.contenedor_video::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle at center, rgba(125, 15, 158, 0.3) 0%, rgba(1, 66, 76, 0.15) 30%, transparent 70%);
    z-index: -1;
    border-radius: 40px;
    animation: pulseGlow 4s infinite alternate;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}


.ebook {
    background: #01424C;
}

.ebook .container {
    max-width: 950px;
}

.img-ebook {
    max-width: 300px;
}

.ventajas {
    background: linear-gradient(to top, #2828288a, #2828288a), #282828 url(../img/fondo-circulos.png) no-repeat center center;
    background-size: cover;
}

.ventajas>.container>.row>.col-sm {
    padding: 0 40px;
}

.box_ventajas {
    position: relative;
    border-radius: 20px;
    background: #000;
    padding: 40px 30px 40px 50px;
    height: 100%;
    display: flex;
}

.icono_ventajas {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: absolute;
    left: -50px;
    top: 20px;
}

.icono_ventajas img {
    width: 40px;
}

.texto_ventajas {
    color: #fbfdff;
}

.texto_ventajas h4 {
    text-transform: uppercase;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
}

.texto_ventajas p {
    font-size: 15px;
    line-height: 24px;
}

.como_hacemos {
    background-color: #000;
}

.box_hacemos {
    position: relative;
    border: 3px solid #01424C;
    border-radius: 15px;
    position: relative;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pasos {
    position: absolute;
    right: -10px;
    top: -10px;
}

.numero {
    width: 50px;
    height: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    background-color: #01424C;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
}

.texto_hacemos h3 {
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.texto_hacemos p {
    font-size: 13px;
    line-height: 20px;
}

.video {
    background-color: #01424C;
}

.testimonios {
    background-color: #f1f1f1;
}

.content_testimonios {
    gap: 20px;
}

.textos_testimonios {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video_testimonio {
    width: 60%;
}

.testimonio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px 10px;
    border-radius: 10px;
    border: 2px solid #000;
    background: #f0f3f5 url(../img/comillas.png) no-repeat center center;
    background-size: 30%;
}

.logo_testimonio img {
    width: 127px;
}

.testimonios p {
    color: #37465A;
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
}

.logos {
    display: flex;
    gap: 3.3%;
    flex-wrap: wrap;
}

.logo_partner {
    width: 30%;
}

.logo_partner img {
    filter: grayscale(1);
}

.content_contacto {
    display: flex;
    gap: 20px;
    background: #01424C url(../img/dots-arrow.png) no-repeat left center;
    background-size: cover;
    padding: 30px;
    border-radius: 20px;
}

.contacto_texto,
.contacto_form {
    width: 100%;
}

.contacto_texto p {
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
}

.contacto_form {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
}

footer {
    background: #fff;
    padding: 20px 0;
    margin-top: 30px;
}

footer img {
    max-width: 300px;
}

footer p {
    font-weight: 500;
    font-size: 15px;
}

.modal .modal-title {
    font-size: 36px;
    padding: 0;
}

.btn_flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.gracias {
    background: linear-gradient(to top, #000000c1, #00000066), url(../img/bg-microsoft-week.jpg) no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.gracias .d-flex img {
    width: 300px;
}

.texto_gracias {
    padding: 0 40px;
}

@media (max-width:768px) {
    .ppal {
        min-height: 90vh;
    }

    h1 {
        font-size: 50px;
        text-align: Center;
        padding: 0;
    }

    /* .ppal .row.d-flex {
        flex-direction: column-reverse;
    } */

    .iconos_ppal {
        flex-wrap: wrap;
    }

    .ppal p {
        margin-bottom: 30px;
        text-align: Center;
        padding: 0;
    }

    .btn_cta {
        display: flex;
        justify-content: center;
    }

    .video_webinar {
        overflow: hidden;
    }

    .texto_bg {
        font-size: 100px;
        line-height: 90px;
    }

    .ebook .container>.d-flex {
        flex-direction: column-reverse;
        align-items: centeR;
    }

    .ebook h2 {
        text-align: center;
    }

    .ebook p {
        text-align: Center;
    }

    .box_ventajas {
        padding: 60px 30px 30px 30px;
    }

    .icono_ventajas {
        top: -50px;
        left: calc(50% - 40px);
    }

    .ventajas>.container>.row>.col-sm {
        padding: 40px;
    }

    .como_hacemos>.container>.row>.col-sm {
        padding: 10px 40px;
    }

    .content_testimonios {
        flex-direction: column-reverse;
    }

    .textos_testimonios,
    .video_testimonio {
        width: 100%;
    }

    .content_contacto {
        flex-direction: column;
    }
}

/* ==================================================
   1. VARIABLES (PALETA KIBERNUM + TONOS MODERNOS)
   ================================================== */
:root {
    --kib-dark: #282828;
    --kib-teal: #01424C;
    --kib-light-teal: #CADCD8;
    --kib-purple: #B9AAD4;
    --kib-green: #B2D5AD;
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
}

/* ==================================================
   2. FONDO Y TIPOGRAFÍA (ESTILO TECH B2B)
   ================================================== */
.ai-week-courses {
    /* Tipografía moderna de sistema (como Mac/iOS) */
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
    padding: 100px 20px;

    /* CORRECCIÓN DE FONDO: 
       Un degradado negro neutro y muy sutil, permitiendo que tu imagen original brille */
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.4), rgba(20, 20, 20, 0.8)), url('../img/bg-kibernum.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -1px;
    text-align: center;
    color: #F3F4F6;
}

/* ==================================================
   3. FILTROS (ESTILO TOGGLE MODERNO)
   ================================================== */
input[type="radio"] {
    display: none;
}

.filter-labels {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    /* Contenedor tipo "píldora" para los botones */
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.filter-labels label {
    padding: 10px 24px;
    background: transparent;
    color: var(--text-muted);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-labels label:hover {
    color: var(--text-main);
}

/* ==================================================
   4. CARDS PREMIUM (GLASSMORPHISM AVANZADO)
   ================================================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.course-card {
    /* Fondo ultraligero y desenfoque alto */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    /* Borde sutil que brilla al pasar el mouse */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Efecto de luz interior superior */
.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.course-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    /* Resplandor suave con el color teal de Kibernum */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(1, 66, 76, 0.3);
    border-color: rgba(202, 220, 216, 0.3);
}

.course-card h3 {
    font-size: 1.4rem;
    margin: 20px 0 12px 0;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
}

.desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.info {
    color: var(--kib-light-teal);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==================================================
   5. BADGES "OUTLINE" (ESTILO NEÓN SUTIL)
   ================================================== */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    /* Forma de píldora */
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
    background: transparent;
}

/* Usamos tus colores solo para los bordes y el texto */
.badge-desarrollo {
    border: 1px solid var(--kib-light-teal);
    color: var(--kib-light-teal);
}

.badge-essential {
    border: 1px solid var(--kib-purple);
    color: var(--kib-purple);
}

.badge-negocio {
    border: 1px solid var(--kib-green);
    color: var(--kib-green);
}

.badge-educacion {
    border: 1px solid var(--kib-teal);
    color: #7FD1DF;
    /* Aclarado para lectura */
}

.badge-ejecutivo {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

/* ==================================================
   6. BOTÓN MODERNO
   ================================================== */
.btn-enroll {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-enroll:hover {
    background: var(--kib-teal);
    color: #ffffff;
    border-color: var(--kib-teal);
    box-shadow: 0 0 15px rgba(1, 66, 76, 0.5);
}

/* ==================================================
   7. LÓGICA DE FILTRADO
   ================================================== */
#desarrollo:checked~.courses-grid .course-card:not([data-category="desarrollo"]),
#essential:checked~.courses-grid .course-card:not([data-category="essential"]),
#negocio:checked~.courses-grid .course-card:not([data-category="negocio"]),
#educacion:checked~.courses-grid .course-card:not([data-category="educacion"]),
#ejecutivo:checked~.courses-grid .course-card:not([data-category="ejecutivo"]) {
    display: none;
}

/* Filtro Activo: Diseño minimalista (solo el texto se ilumina y toma fondo sutil) */
#all:checked~.filter-labels label[for="all"],
#desarrollo:checked~.filter-labels label[for="desarrollo"],
#essential:checked~.filter-labels label[for="essential"],
#negocio:checked~.filter-labels label[for="negocio"],
#educacion:checked~.filter-labels label[for="educacion"],
#ejecutivo:checked~.filter-labels label[for="ejecutivo"] {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* ==================================================
   8. RESPONSIVE
   ================================================== */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

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

    .filter-labels {
        padding: 4px;
        border-radius: 20px;
    }

    .filter-labels label {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ==================================================
   ANIMACIÓN DE ENTRADA (FILTER PILLS)
   ================================================== */
@keyframes techReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.course-card {
    will-change: transform, opacity;
}

/* ==================================================
   ANIMATIONS & LENIS & CUSTOM CURSOR (GSAP)
   ================================================== */
html.lenis,
html.lenis body {
    height: auto;
    width: 100vw;
    overflow-x: hidden;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

/* ── Scroll Progress Bar ── */
#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #CADCD8, #01424C);
    transform: scaleX(0);
    transform-origin: left center;
    z-index: 99999;
    pointer-events: none;
    border-radius: 0 2px 2px 0;
}

/* ── Custom Cursor ── */
@media (hover: hover) and (pointer: fine) {

    body,
    a,
    button,
    label,
    .btn,
    .btn-enroll,
    .filter-labels label,
    .course-card,
    input {
        cursor: none !important;
    }
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #CADCD8;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(202, 220, 216, 0.5);
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.15s, height 0.15s;
}

/* ── Hero Canvas ── */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.ppal>.container {
    position: relative;
    z-index: 1;
}

/* ── Magnetic Ripple ── */
.btnKibernum,
.btn-enroll {
    position: relative;
    overflow: hidden;
}

/* Filter Active Override for clean aesthetics */
#all:checked~.filter-labels label[for="all"],
#desarrollo:checked~.filter-labels label[for="desarrollo"],
#essential:checked~.filter-labels label[for="essential"],
#negocio:checked~.filter-labels label[for="negocio"],
#educacion:checked~.filter-labels label[for="educacion"],
#ejecutivo:checked~.filter-labels label[for="ejecutivo"] {
    background: rgba(1, 66, 76, 0.8);
    color: #ffffff;
    border-color: #01424C;
    box-shadow: 0 0 15px rgba(1, 66, 76, 0.4);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: #01424C;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #CADCD8;
}

/* ==================================================
   AWWWARDS 'ULTRA-PREMIUM' UPGRADES
   ================================================== */

/* 1. SplitType Typography Masking */
.char,
.word {
    display: inline-block;
    will-change: transform, opacity;
}

.line {
    overflow: hidden;
    padding-bottom: 5px;
    /* Prevent cuts on descenders */
    display: block;
}

/* 2. Glassmorphism Dynamic Glow on Cards */
.course-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
            rgba(202, 220, 216, 0.1),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
    pointer-events: none;
}

.course-card:hover::after {
    opacity: 1;
}

/* 3. Asymmetrical Composition / Scrollytelling overrides */
.img_partner {
    position: relative;
    z-index: 10;
}

/* Subtle Volumetric Noise overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* 4. Layou Shift: Hero Group floating Left to avoid covering face */
.ppal>.container>.row>.col-sm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-right: auto;
    max-width: 60%;
}

.ppal h2.mi-subtitulo {
    font-size: 20px;
    font-weight: 400;
    color: #DEE0FF;
    text-align: left;
    margin-bottom: 10px;
}

.ppal h1 {
    text-align: left;
    padding: 0;
    width: 100%;
}

.ppal p {
    text-align: left;
    padding: 0;
}

.ppal .img_partner {
    display: flex;
    justify-content: flex-start;
}

.ppal .iconos_ppal,
.ppal .btn_cta {
    justify-content: flex-start !important;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .ppal {
        padding-top: 180px;
    }

    .ppal>.container>.row>.col-sm {
        max-width: 100%;
        align-items: center;
        margin: 0 auto;
    }

    .ppal h2.mi-subtitulo,
    .ppal h1,
    .ppal p {
        text-align: center;
    }

    .ppal h1 {
        font-size: 42px !important;
    }

    .ppal h1 .line,
    .ppal h1 .word,
    .ppal h1 .char {
        text-align: center !important;
        justify-content: center !important;
    }

    .ppal .img_partner,
    .ppal .iconos_ppal,
    .ppal .btn_cta {
        justify-content: center !important;
    }

    .ppal .img_partner img {
        margin: 20px auto 0 auto !important;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    header {
        padding: 5px 0;
    }

    header .logo img {
        max-width: 150px;
    }

    .ppal {
        padding-top: 60px !important;
        min-height: 100vh;
    }

    .ppal>.container>.row>.col-sm {
        max-width: 65% !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
    }

    .ppal h2.mi-subtitulo {
        font-size: 14px !important;
        margin-bottom: 5px !important;
        text-align: left !important;
    }

    .ppal h1 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
        text-align: left !important;
    }

    .ppal h1 .line,
    .ppal h1 .word,
    .ppal h1 .char {
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .ppal .img_partner,
    .ppal .iconos_ppal,
    .ppal .btn_cta {
        justify-content: flex-start !important;
    }

    .ppal .iconos_ppal {
        flex-direction: row !important;
        gap: 20px !important;
    }

    .icono_ppal {
        font-size: 12px !important;
    }

    .ppal .img_partner img {
        margin: 10px 0 0 0 !important;
        max-width: 120px !important;
    }

    .btn_cta .btn {
        padding: 8px 15px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 576px) {
    .ppal {
        padding-top: 130px;
    }

    .ppal>.container>.row>.col-sm {
        max-width: 100%;
        padding: 0 15px;
    }

    .ppal h1 {
        font-size: 28px !important;
        line-height: 1.2;
        text-align: center !important;
    }

    .ppal h1 .line,
    .ppal h1 .word,
    .ppal h1 .char {
        text-align: center !important;
        justify-content: center !important;
    }

    .ppal h2.mi-subtitulo,
    .ppal p {
        text-align: center !important;
    }

    .ppal .iconos_ppal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .ppal .img_partner img {
        max-width: 150px;
        margin-top: 20px !important;
    }

    /* Fix Countdown Layout */
    #countdown ul {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 5px;
        padding: 0;
        margin: 0;
    }

    .contador li {
        padding: 5px;
        font-size: 10px;
    }

    .contador li span {
        font-size: 24px !important;
    }
}