/* ===== RESET ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #111;
}

/* ===== CONTAINER ===== */

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* ==========================
   HEADER FIJO
========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 9999;

    background: black;

    transition: all .4s ease;
}

/* HEADER AL HACER SCROLL */

.header.scrolled {

    background: rgba(7, 24, 63, .75);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}

/* CONTENEDOR */

.nav-container {
    height: 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: .3s;
}

/* OPCIONAL:
   Reducir altura cuando baja */

.header.scrolled .nav-container {
    height: 75px;
}

.logo img {
    height: 55px;
}
@media (max-width:576px) {
    .logo img {
        height: 45px;
    }
}

.navbar ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.navbar a:hover {
    color: #1d8cff;
}

.btn-nav {
    background: #1d8cff;
    color: #fff;

    padding: 12px 24px;
    border-radius: 12px;

    text-decoration: none;
    font-weight: 700;
}

.btn-nav:hover {
    transform: translateY(-3px);
}

 .menu-toggle {

        display: flex;

        position: absolute;

        right: 20px;

        top: 50%;

        transform: translateY(-50%);

        font-size: 30px;

        color: white;
    }

    .nav-container{

        position: relative;
    }

.menu-toggle.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* OVERLAY */

.menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    transition: .4s;

    z-index: 9998;
}

.mobile-logo {

    text-align: left;

    margin-bottom: 20px;
}

.mobile-logo img {

    width: 180px;
    max-width: 100%;

    height: auto;
}

/* PANEL */

.mobile-menu {

    position: fixed;

    top: 0;
    right: -100%;

    width: 70%;
    max-width: 380px;

    height: 100vh;

    background: rgba(7, 24, 63, .75);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    padding: 100px 35px 40px;

    transition: .45s ease;

    z-index: 9999;

    display: flex;
    flex-direction: column;
}

.mobile-menu ul {

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 25px;
    margin-top: 6px;
}

.mobile-menu a {

    color: white;

    text-decoration: none;

    font-size: 1.2rem;

    font-weight: 600;

    transition: .3s;
}

.mobile-menu a:hover {

    color: white;
    padding-left: 8px;
}

/* BOTON */

.mobile-btn {

    margin-top: 40px;

    background: #00b3ff;

    padding: 16px;

    border-radius: 12px;

    text-align: center !important;
}

/* CERRAR */

.close-menu {

    position: absolute;

    top: 30px;
    right: 30px;

    color: white;

    font-size: 30px;

    cursor: pointer;
}

/* MENU ABIERTO */

.mobile-menu.active {

    right: 0;
}

.menu-overlay.active {

    opacity: 1;

    visibility: visible;
}

@media (max-width:991px) {

    .navbar {

        display: none;
    }

    .btn-nav {

    }

    .menu-toggle {

        display: block;
    }

}

.mobile-menu-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: -50px;
    margin-bottom: 40px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, .10);
}


.close-menu {

    position: static;

    color: white;

    margin-top: -30px;
    font-size: 32px;

    cursor: pointer;

    transition: .3s;
}

.close-menu:hover {

    color: #ff6a00;

    transform: rotate(90deg);
}


















/* ===================================
   HERO
=================================== */

.hero {

    min-height: 90vh;

    display: flex;
    align-items: center;

    padding: 140px 0 80px;

    background:
        linear-gradient(rgba(3, 10, 28, .35),
            rgba(3, 10, 28, .35)),
        url("../img/fondo_hero.png");

    background-size: cover;
    background-position: 80% center;
    background-repeat: no-repeat;

    position: relative;
}

.hero-content {

    max-width: 700px;
}

/* ==========================
   BADGE PREMIUM
========================== */
.hero-badge {

    font-family: 'Space Grotesk', sans-serif;
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 28px;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            rgba(12, 22, 48, .92),
            rgba(7, 15, 35, .85));

    border: 1px solid rgba(255, 106, 0, .35);

    backdrop-filter: blur(15px);

    color: #ffffff;

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    overflow: hidden;

    margin-bottom: 30px;

    box-shadow:
        0 0 20px rgba(255, 106, 0, .15),
        inset 0 0 20px rgba(255, 106, 0, .05);
}

.hero-badge::before {

    content: "";

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #ff6a00;

    box-shadow:
        0 0 10px #ff6a00,
        0 0 25px #ff6a00;

    animation: pulseBadge 2s infinite;
}

.hero-badge::after {

    content: "";

    position: absolute;

    top: 0;
    left: -150%;

    width: 120px;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent);

    transform: skewX(-25deg);

    animation: shineBadge 4s infinite;
}

@keyframes pulseBadge {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: .7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shineBadge {

    0% {
        left: -150%;
    }

    100% {
        left: 180%;
    }
}

.hero-badge {

    animation: floatBadge 5s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* TITULO */

.hero p {

    max-width: 700px;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 44px;

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 35px;

    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #ffffff 35%,
            #ffffff 45%,
            rgba(255, 255, 255, .3) 50%,
            #ffffff 55%,
            #ffffff 100%);

    background-size: 300% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: textShine 5s linear infinite;
}


.hero-title span {

    background:
        linear-gradient(90deg,
            #ff6a00,
            #ffb347,
            #ff6a00);

    background-size: 200% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: orangeGlow 3s linear infinite;

    text-shadow:
        0 0 15px rgba(255, 106, 0, .4);
}

@keyframes orangeGlow {

    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1200px) {

    .hero-content {

        max-width: 650px;
    }

}

@media(max-width:992px) {

    .hero {

        text-align: center;

        background-position: 85% center;
    }

    .hero-content {

        max-width: 100%;
    }


}

@media(max-width:768px) {

    .hero {

        padding-top: 120px;

        background-position: 88% right;
    }

    .hero h1 {

        font-size: 2.5rem;
    }

    .offer-price {

        padding: 20px;
    }

    .price {

        font-size: 3.5rem;
    }

    .hero-features {

        grid-template-columns: repeat(4, 1fr);

        gap: 8px;
    }

    .feature-card {

        padding: 12px 8px;
    }

    .feature-card i {

        font-size: 1.3rem;
    }

    .feature-card strong {

        font-size: .75rem;
    }

    .feature-card span {

        font-size: .65rem;
    }

}

@media(max-width:576px) {

    .hero {

        height: 72vh !important;
        min-height: 70vh !important;
        background-position: right;

        padding-top: 110px;
    }

    .hero-cards {

        background-position: right;
        padding-top: 10px;

    }

    .hero-title {

        font-size: 30px !important;
    }

    .hero-badge {

        font-size: .75rem;
    }

    .hero h1 {

        font-size: 2rem;
    }

    .price {

        font-size: 3rem;
    }

}

/* ===================================
   BANNERS HERO
=================================== */

.hero-banners {

    display: flex;

    flex-direction: column;

    gap: 20px;

    margin-top: 40px;

    width: 100%;

    max-width: 750px;
}

.hero-banner {

    display: block;

    width: 100%;

    border-radius: 20px;

    overflow: hidden;

    transition: .4s ease;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .25);
}

.hero-banner:hover {

    transform: translateY(-5px);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .35);
}

.hero-banner img {

    width: 100%;

    display: block;

    height: auto;

    object-fit: cover;
}

@media(max-width:768px) {

    .hero-banners {

        margin-top: 30px;

        gap: 15px;
    }

    .hero-banner {

        border-radius: 16px;
    }


}

@media(max-width:576px) {
    .hero {

        height: 50vh;
    }

    .hero-banners {
        gap: 12px;
    }

    .hero-banner {

        border-radius: 14px;
    }
}

/* ===================================
   TITULO + PROMOCION
=================================== */

.hero-title-row {

    display: flex;
    align-items: flex-end;
    gap: 25px;

    margin-bottom: 35px;
}

.hero-title-row h1 {

    flex: 1;

    font-size: 54px;
    line-height: 1.05;
    font-weight: 800;

    color: #fff;
}

.hero-title-row h1 span {
    color: #ff6a00;
}

/* PROMOCION PEQUEÑA */

.promo-mini {

    width: 350px;

    flex-shrink: 0;

    display: block;

    transition: .3s ease;
}

.promo-mini:hover {

    transform: translateY(-4px) scale(1.02);
}

.promo-mini img {

    width: 100%;
    display: block;
}

/* BANNER BENEFICIOS */

.hero-benefits-banner {

    max-width: 650px;
}

.hero-benefits-banner img {

    width: 100%;
    display: block;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px) {

    .hero-title-row {

        flex-direction: column;

        align-items: center;

        text-align: center;
    }

    .hero-title-row h1 {

        font-size: 46px;
    }

    .promo-mini {

        width: 240px;
    }

    .hero-benefits-banner {

        margin: auto;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px) {

    .hero-title-row h1 {

        font-size: 14px;
    }

    .promo-mini {

        width: 180px;
    }

    .hero-benefits-banner {

        margin-top: 20px;
    }
}


/* ==========================
   TARJETAS HERO
========================== */

.hero-cards {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    margin-top: 15px;

    max-width: 800px;
}

.hero-card {

    position: relative;
    min-height: 100px;
    padding: 12px 10px;
    border-radius: 22px;
    background:
        linear-gradient(135deg,
            rgba(15, 25, 55, .85),
            rgba(7, 15, 35, .75));
    border: 1px solid rgba(255, 106, 0, .25);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: .4s ease;
}

/* brillo superior */

.hero-card::before {

    content: "";

    position: absolute;

    top: -50%;

    left: -20%;

    width: 140%;

    height: 80px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .08),
            transparent);

    transform: rotate(-8deg);
}

/* luz naranja inferior */

.hero-card::after {

    content: "";

    position: absolute;

    bottom: -15px;

    left: 10%;

    width: 80%;

    height: 25px;

    background: #ff6a00;

    filter: blur(20px);

    opacity: .35;
}

.hero-card:hover {

    transform:
        translateY(-8px) scale(1.04);

    border-color: #ff6a00;

    box-shadow:
        0 0 20px rgba(255, 106, 0, .25),
        0 0 60px rgba(255, 106, 0, .15),
        inset 0 0 25px rgba(255, 106, 0, .08);
}

.card-icon {

    width: 30px;
    height: 30px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle,
            rgba(255, 106, 0, .18),
            transparent);

    border: 2px solid rgba(255, 106, 0, .45);

    margin-bottom: 14px;

    position: relative;
}

.card-icon::before {

    content: "";

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border: 1px solid rgba(255, 106, 0, .15);
}

.card-icon i {

    color: #ff6a00;

    font-size: 18px;

}

.card-text h3 {

    color: #fff;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 6px;

    line-height: 1.1;
    text-transform: uppercase;
}

.card-text span {

    color: #cfd8e3;

    font-size: 10px;

    line-height: 1.1;
    text-transform: uppercase;
    display: block;
}

.hero-content {
    max-width: 950px;
}



@media (max-width:768px) {

    .hero-cards {

        grid-template-columns: repeat(4, 1fr);

        gap: 8px;
    }

    .hero-card {

        min-height: 110px;

        padding: 10px 6px;
    }

    .card-icon {

        width: 42px;
        height: 42px;
    }

    .card-icon i {

        font-size: 16px;
    }

    .card-text h3 {

        font-size: .60rem;
    }

    .card-text span {

        font-size: .55rem;
    }
}


.hero-actions {
    font-family: 'Space Grotesk', sans-serif;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;

    margin-top: 20px;

    width: 100%;
    max-width: 800px;
}
.hero-btn span,
.hero-btn i {
    position: relative;
    z-index: 5;
}
.hero-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;

    min-height: 52px;
    padding: 12px 18px;

    color: #fff;
    text-decoration: none;

    border-radius: 16px;
    overflow: hidden;

    isolation: isolate;

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s ease,
        filter .35s ease;
}

/* Borde naranja */
.hero-btn::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        #ff6a00,
        #ffb347,
        #ff6a00
    );

    border-radius: 16px;
    z-index: -2;
}

.hero-btn::after {
    content: "";
    position: absolute;

    inset: 1px; /* antes 2px */

    background: linear-gradient(
        135deg,
        rgba(15,25,55,.95),
        rgba(7,15,35,.90)
    );

    border-radius: 15px;
    z-index: -1;
}

/* Contenido encima */
.hero-btn i,
.hero-btn span,
.hero-btn strong {
    position: relative;
    z-index: 10;
}

/* Si el texto está directamente dentro del <a> */
.hero-btn {
    z-index: 1;
}

/* Icono */
.hero-btn i {
    color: #ffb347;
    font-size: 1.1rem;
    min-width: 22px;
}

/* Efecto brillo */
.hero-btn .shine {
    position: absolute;
    top: 0;
    left: -150%;

    width: 60px;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform: skewX(-25deg);

    animation: btnShine 4s infinite;

    z-index: 5;
}

@keyframes btnShine {
    0% {
        left: -150%;
    }

    100% {
        left: 200%;
    }
}
@keyframes borderFlow {
    from {
        background-position: 0% center;
    }
    to {
        background-position: 200% center;
    }
}
/* Hover */
.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 25px rgba(255,106,0,.25),
        0 0 50px rgba(255,106,0,.15);
}


.hero-btn:hover {
    transform: translateY(-4px);
}

.hero-btn:hover::before {
    filter: brightness(1.2);
}

.hero-btn-primary {
    box-shadow:
        0 0 25px rgba(255, 106, 0, .25);
}

.hero-btn-secondary {
    box-shadow:
        0 0 25px rgba(59, 130, 246, .18);
}
@media (max-width: 768px) {

    .hero-actions {
        gap: 8px;
        margin-top: 12px;
    }

    .hero-btn {
        min-height: 44px;
        padding: 10px 14px;

        font-size: .68rem;
        gap: 8px;

        border-radius: 12px;
    }

    .hero-btn i {
        font-size: .9rem;
        min-width: 16px;
    }
}


























/* ===================================
   BOTON PROMOCION FLOTANTE
=================================== */

.promo-floating {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 280px;

    z-index: 9999;

    text-decoration: none;

    border-radius: 22px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(5, 15, 40, .95),
            rgba(2, 8, 20, .95));

    border: 1px solid rgba(255, 106, 0, .45);

    backdrop-filter: blur(20px);

    box-shadow:
        0 0 25px rgba(255, 106, 0, .15),
        0 0 60px rgba(255, 106, 0, .08);

    animation:
        floatPromo 4s ease-in-out infinite;

    transition: .35s ease;
}

/* brillo superior */

.promo-floating::before {

    content: "";

    position: absolute;

    top: 0;
    left: -150%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent);

    transform: skewX(-25deg);

    animation: shinePromo 4s linear infinite;
}

/* borde luminoso */

.promo-floating-glow {

    position: absolute;

    inset: 0;

    border-radius: 22px;

    box-shadow:
        inset 0 0 20px rgba(255, 106, 0, .15),
        0 0 30px rgba(255, 106, 0, .25);

    pointer-events: none;
}

.promo-floating-content {

    position: relative;

    padding: 15px;
    padding-bottom: 10px;

    text-align: center;
}

.promo-label {

    display: inline-block;

    padding: 6px 10px;

    border-radius: 999px;

    background: #ff6a00;

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 6px;
}

.promo-floating h3 {

    color: #ff6a00;

    font-size: 2.4rem;

    line-height: 1;

    font-weight: 900;

    margin-bottom: 6px;

    text-shadow:
        0 0 10px rgba(255, 106, 0, .6),
        0 0 25px rgba(255, 106, 0, .5);
}

.promo-floating p {

    color: #fff;

    font-size: .85rem;

    line-height: 1.4;

    opacity: .95;
}

.promo-floating:hover {

    transform:
        translateY(-8px) scale(1.03);

    box-shadow:
        0 0 30px rgba(255, 106, 0, .35),
        0 0 80px rgba(255, 106, 0, .18);
}

.promo-floating h3 i {


    animation: pulseBolt 1.8s infinite;
}

@keyframes pulseBolt {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

@keyframes floatPromo {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes shinePromo {

    0% {
        left: -150%;
    }

    100% {
        left: 200%;
    }
}

@media(max-width:768px) {
    .promo-label {
        font-size: 8px;
    }

    .promo-floating {

        width: 220px;

        right: 15px;
        bottom: 15px;
    }

    .promo-floating h3 {

        font-size: 1.9rem;
    }

    .promo-floating p {

        font-size: .75rem;
    }
}





/* ===================================
   TITULOS DE SECCIONES
=================================== */

.section-title {

    text-align: center;

    max-width: 1000px;

    margin: 0 auto 30px;

    position: relative;
}

/* ETIQUETA SUPERIOR */

.section-title-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        linear-gradient(135deg,
            rgba(255, 106, 0, .12),
            rgba(255, 106, 0, .04));

    color: #ff6a00;

    font-size: .80rem;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    border: 1px solid rgba(255, 106, 0, .15);

    margin-bottom: 22px;
}

/* LINEA DECORATIVA */

.section-title-line {

    width: 120px;

    height: 4px;

    margin: 0 auto 30px;

    border-radius: 50px;

    background:
        linear-gradient(90deg,
            transparent,
            #ff6a00,
            transparent);

    position: relative;
}

.section-title-line::after {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 40px;
    height: 40px;

    background: #ff6a00;

    border-radius: 50%;

    filter: blur(20px);

    opacity: .35;
}

/* TITULO */

.section-title h2 {

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(1.9rem, 2.5vw, 3.1rem);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;

    color: #08142b;

    position: relative;

    animation: titleFloat 6s ease-in-out infinite;
}

/* PALABRA RESALTADA */

.section-title h2 span {

    background:
        linear-gradient(90deg,
            #ff6a00,
            #ffb347,
            #ff6a00);

    background-size: 200% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: orangeShine 4s linear infinite;
}

/* SUBTITULO OPCIONAL */

.section-title p {

    margin-top: 25px;

    font-size: 1.15rem;

    line-height: 1;

    color: #687385;

    max-width: 800px;

    margin-left: auto;
    margin-right: auto;
}

@keyframes orangeShine {

    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

@keyframes titleFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media(max-width:768px) {

    .section-title {

        margin-bottom: 20px;
    }

    .section-title-tag {

        font-size: .70rem;

        letter-spacing: 1.5px;

        padding: 8px 18px;
    }

    .section-title-line {

        width: 90px;

        margin-bottom: 20px;
    }

    .section-title p {

        font-size: 1rem;

        line-height: 1.2;
    }
}

@media(max-width:576px) {

    .section-title h2 {

        line-height: 1;
    }
}





















/* ===================================
   SEGUNDA SECCION
=================================== */

.challenge-section {
    padding: 100px 0;
    background: #fff;
}

.challenge-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #ff7a00;
    border-radius: 50px;
    color: #ff7a00;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    color: #0a1733;
    margin-bottom: 25px;
}

.section-header h2 span {
    color: #ff7a00;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5e6470;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cards-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.info-card {

    background: #fff;

    padding: 25px 15px;

    text-align: center;

    border-radius: 16px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .06);

    transition: .35s ease;

    border: 1px solid #f3f3f3;

}

.info-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 50px rgba(255, 122, 0, .12);

    border-color: #ff7a00;
}

.icon-box {

    width: 80px;
    height: 80px;

    margin: auto;
    margin-bottom: 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #fff4eb,
            #ffe7d1);

    color: #ff7a00;

    font-size: 32px;
}

.info-card h3 {

    font-size: 1.35rem;

    color: #08152f;

    margin-bottom: 15px;

    font-weight: 700;
}

.info-card p {

    color: #6d7785;

    line-height: 1.8;

    font-size: .95rem;
}

.cards-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.info-card {
    padding: 20px 15px;
    border-radius: 14px;
}

.icon-box {
    width: 55px;
    height: 55px;
    font-size: 22px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: .95rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.info-card p {
    font-size: .80rem;
    line-height: 1.5;
}

@media(max-width:992px) {

    .challenge-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

}

@media(max-width:768px) {

    .challenge-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

}

@media(max-width:991px) {

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:768px) {

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .info-card {
        padding: 20px 15px;
        border-radius: 14px;
    }

    .icon-box {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .info-card h3 {
        font-size: .95rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .info-card p {
        font-size: .80rem;
        line-height: 1.5;
    }
}

@media (max-width: 568px) {

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .info-card {
        padding: 20px 15px;
        border-radius: 14px;
    }

    .icon-box {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .info-card h3 {
        font-size: .95rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .info-card p {
        font-size: .80rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {

    .cards-grid {
        gap: 12px;
    }

    .info-card {
        padding: 18px 12px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .info-card h3 {
        font-size: .85rem;
    }

    .info-card p {
        font-size: .75rem;
        line-height: 1.4;
    }
}






















/* ===================================
   TERCERA SECCION
=================================== */
.audience-section {
    padding: 20px 0;
    background: #fff;
}

.audience-highlight {

    margin-top: 40px;

    background:
        linear-gradient(135deg,
            #08152f,
            #10264f);

    color: white;

    padding: 40px;
    margin-bottom: 35px;
    border-radius: 24px;

    display: flex;

    align-items: center;

    gap: 25px;

    overflow: hidden;

    position: relative;
}

.highlight-icon {

    width: 80px;
    height: 80px;

    min-width: 80px;

    border-radius: 50%;

    background: #ff7a00;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;
}

.audience-highlight h3 {

    margin-bottom: 10px;

    font-size: 1.6rem;
}

.audience-highlight p {

    line-height: 1.8;

    opacity: .9;
}

@media(max-width:991px) {

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:576px) {

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .audience-card {
        padding: 20px 15px;
    }

    .audience-card i {
        font-size: 28px;
    }

    .audience-highlight {
        flex-direction: column;
        text-align: center;
    }
}

.audience-slider {

    overflow: hidden;
    position: relative;


    padding-top: 15px;

    padding-bottom: 15px;

}

.audience-track {

    display: flex;
    gap: 20px;

    width: max-content;

    animation:
        scrollAudience 35s linear infinite;

}

.audience-card {

    width: 170px;

    flex-shrink: 0;

    background: #fff;

    border-radius: 18px;

    padding: 28px 22px;

    text-align: center;

    border: 1px solid #f2f2f2;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .06);

    transition: .3s;
}

.audience-card:hover {

    transform: translateY(-10px);

    border-color: #ff7a00;

    box-shadow:
        0 18px 40px rgba(255, 122, 0, .15);
}

.audience-card i {

    font-size: 32px;

    color: #ff7a00;

    margin-bottom: 15px;

    display: block;
}

.audience-card span {

    color: #08152f;

    font-weight: 600;

}

@keyframes scrollAudience {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

.audience-slider::before,
.audience-slider::after {

    content: '';

    position: absolute;

    top: 0;

    width: 120px;
    height: 100%;

    z-index: 5;
}

.audience-slider::before {

    left: 0;

    background:
        linear-gradient(to right,
            white,
            transparent);
}

.audience-slider::after {

    right: 0;

    background:
        linear-gradient(to left,
            white,
            transparent);
}


@media(max-width:776px) {
    .audience-card {

        width: 150px;
        padding: 14px 12px;
        transition: .3s;
    }

    .audience-card span {
        font-size: 14px;
        line-height: 0.5;

    }

    .audience-card i {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .audience-section {
        padding: 0px 0;
    }

}

@media (max-width: 768px) {

    .audience-highlight {

        position: relative;

        padding: 25px 20px;

        text-align: left;

        display: block;
        margin-bottom: 25px;
    }

    .highlight-icon {

        position: absolute;

        top: 22px;
        left: 25px;

        width: 60px;
        height: 60px;

        min-width: 50px;

        font-size: 1.2rem;

        margin: 0;
    }

    .audience-highlight h3 {

        padding-left: 80px;

        min-height: 50px;

        display: flex;
        align-items: center;

        font-size: 1.2rem;

        margin-bottom: 15px;

        line-height: 1.3;
    }

    .audience-highlight p {

        margin-top: 0;

        font-size: .95rem;

        line-height: 1.8;

        text-align: left;
    }
}




























/* ===================================
   RESULTADOS Y METODOLOGÍA
=================================== */

.results-section {

    position: relative;

    padding: 120px 0;

    background-image: url('../img/fondo_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    overflow: hidden;
}

/* Overlay */

.results-overlay {

    position: absolute;
    inset: 0;

    background: linear-gradient(rgba(8, 21, 47, .88),
            rgba(8, 21, 47, .88));
}

.results-section .container {

    position: relative;
    z-index: 2;
}

/* ===================================
   HEADER
=================================== */

.results-header {

    text-align: center;

    color: white;

    max-width: 900px;

    margin: auto;
    margin-bottom: 70px;
}

.results-header span {

    display: inline-block;

    padding: 10px 20px;

    border-radius: 50px;

    background: rgba(255, 122, 0, .15);

    color: #ff7a00;

    font-weight: 600;

    letter-spacing: .5px;

    margin-bottom: 20px;
}

.results-header h2 {

    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 20px;
}

.results-header p {

    opacity: .9;

    line-height: 1.9;

    font-size: 1.05rem;
}

/* ===================================
   GRID
=================================== */

.results-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;
}

/* ===================================
   TARJETAS
=================================== */

.results-card {

    background: linear-gradient(135deg,
            #f7f8fa,
            #eceff4);
    border: 1px solid rgba(255, 122, 0, .12);
    border-radius: 28px;

    padding: 40px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .15);

    transition: .35s ease;

    position: relative;

    overflow: hidden;
}

.results-card::after {

    content: '';

    position: absolute;

    left: 50%;
    bottom: -20px;

    transform: translateX(-50%);

    width: 120px;
    height: 50px;

    background: #ff7a00;

    filter: blur(35px);

    opacity: .15;
}

/* Línea superior naranja */

.results-card li::before {

    content: '✓';

    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: #ff7a00;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: .75rem;

    font-weight: 700;

    box-shadow:
        0 4px 12px rgba(255, 122, 0, .35);
}

.results-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 70px rgba(255, 122, 0, .18);
}

/* ===================================
   TITULO DE TARJETA
=================================== */

.card-title {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;
}

.card-title i {

    color: #ff7a00;

    font-size: 30px;
}

.card-title h3 {

    color: #08152f;

    font-size: 1.4rem;
        line-height: 1.1;

    margin: 0;

    font-weight: 700;
}

/* ===================================
   LISTA
=================================== */

.results-card ul {

    list-style: none;

    padding: 0;
    margin: 0;
}

.results-card li {

    position: relative;

    padding: 14px 0 14px 32px;

    border-bottom: 1px solid #edf2f7;

    color: #4b5563;

    line-height: 1.1;

    background: white;

    border-radius: 14px;

    margin-bottom: 12px;

    padding: 14px 18px 14px 48px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, .04);
}

.results-card li:last-child {

    border-bottom: none;
}

.results-card li::before {

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: #ff7a00;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: .75rem;

    top: 50%;

    transform: translateY(-50%);
}

/* ===================================
   ESTADÍSTICAS
=================================== */

.stats-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-bottom: 30px;
}

.stat-box {

    background:
        linear-gradient(135deg,
            #08152f 0%,
            #0f2750 100%);

    border: 1px solid rgba(255, 122, 0, .25);

    border-radius: 20px;

    padding: 28px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .18);
}

.stat-box::before {

    content: '';

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(255, 122, 0, .15);

    top: -40px;
    right: -40px;

    filter: blur(20px);
}

.stat-box span {

    display: block;

    font-size: 3rem;

    font-weight: 800;

    color: #ff7a00;

    line-height: 1;
}

.stat-box small {

    display: block;

    margin-top: 10px;

    color: #ffffff;

    font-weight: 600;
}

/* ===================================
   RESPONSIVE TABLET
=================================== */

@media(max-width:991px) {

    .results-section {

        padding: 90px 0;
    }

    .results-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .results-header h2 {

        font-size: 2.2rem;
    }

}

/* ===================================
   RESPONSIVE CELULAR
=================================== */

@media(max-width:576px) {

    .results-section {

        padding: 70px 0;

        background-attachment: scroll;
    }

    .results-header {

        margin-bottom: 40px;
    }

    .results-header h2 {

        font-size: 1.9rem;

        line-height: 1.2;
    }

    .results-header p {

        font-size: .95rem;
    }

    .results-card {

        padding: 25px 20px;

        border-radius: 22px;
    }

    .card-title {

        gap: 12px;

        margin-bottom: 20px;
    }

    .card-title i {

        font-size: 24px;
    }

    .card-title h3 {

        font-size: 0.9rem;
        line-height: 1.1;
    }

    .results-card li {

        font-size: .80rem;

        line-height: 1.1;
    }

    .stats-grid {

        gap: 12px;
    }

    .stat-box {

        padding: 18px;
    }

    .stat-box span {

        font-size: 2rem;
    }

    .stat-box small {

        font-size: .8rem;
    }

}



























/*==================================
CONTENIDO DEL PROGRAMA
==================================*/

.content-section {

    padding: 120px 0;
    background: #fff;
    position: relative;
}

/* TIMELINE */

.timeline {

    position: relative;
    max-width: 1200px;
    margin: auto;
}

.timeline::before {

    content: '';

    position: absolute;

    left: 50%;

    top: 0;
    bottom: 0;

    width: 2px;

    background:
        linear-gradient(to bottom,
            transparent,
            #ff7a00,
            transparent);

    transform: translateX(-50%);
}

/* ITEM */

.timeline-item {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 2px;
}

.left {

    padding-right: 55%;
}

.right {

    padding-left: 55%;
}

/* CARD */

.module-card {

    margin-left: 20px;
    margin-right: 20px;
    background: #fff;

    border-radius: 20px;

    padding: 16px 20px;

    display: flex;

    align-items: center;

    gap: 15px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06);

    transition: .35s;

    min-height: 110px;
    position: relative;
    overflow: hidden;
}

.module-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(to bottom,
            #ff7a00,
            #ffb347);
}

.module-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(255, 122, 0, .15);
}

/* ICONO */

.module-icon {

    width: 65px;
    height: 65px;

    min-width: 65px;
    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #08152f,
            #10264f);

    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon i {

    font-size: 24px;
    color: #ff7a00;
}

/* CONTENIDO */

.module-content h3 {

    color: #08152f;

    font-size: 1.15rem;

    font-weight: 700;

    margin-bottom: 5px;
text-align: justify;
    line-height: 1;
    margin-bottom:8px;
}

.module-content p {

    margin: 0;
text-align: justify;
    font-size: .92rem;

    line-height: 1.1;

    color: #5b6472;
}

/* NUMERO */

.module-number {

    width: 70px;
    height: 70px;

    min-width: 70px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #08152f,
            #10264f);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff7a00;

    font-size: 1.7rem;

    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(8, 21, 47, .18);
}

.left .module-number {

    left: 0;
}

.right .module-number {

    right: 0;
}

/* BANNER */
.content-banner {
    margin-top: 20px;
    background:
        linear-gradient(135deg,
            #08152f,
            #10264f);
    border-radius: 22px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #fff;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .15);
    border: 1px solid rgba(255, 122, 0, .12);
}

.banner-icon {

    width: 65px;
    height: 65px;

    min-width: 65px;

    border-radius: 18px;

    background:
        rgba(255, 122, 0, .08);

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 122, 0, .15);
}

.banner-icon i {

    font-size: 24px;

    color: #ff7a00;
}

.banner-icon i {

    font-size: 40px;
    color: #ff7a00;
}

.banner-text h3 {

    font-size: 0.85rem;

    margin: 0 0 5px;

    font-weight: 700;
}

.banner-text p {

    margin: 0;

    color: rgba(255, 255, 255, .75);

    font-size: .92rem;

    line-height: 1.1;
    text-align:justify;
}

.banner-features {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.banner-features div {

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 10px;
}

.banner-features i {

    font-size: 26px;
    color: #ff7a00;
}

.feature-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 14px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .06);

    transition: .3s;
}

.feature-item:hover {

    background:
        rgba(255, 122, 0, .08);

    border-color:
        rgba(255, 122, 0, .25);
}

.feature-item i {

    color: #ff7a00;

    font-size: 16px;
}

.feature-item span {

    font-size: .9rem;

    font-weight: 600;

    white-space: nowrap;
}
.banner-left{
    display:flex;
    align-items:center;
    gap:16px;
}
/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px) {

    .timeline::before {
        display: none;
    }

    .timeline-item {

        padding: 0 !important;

        margin-bottom: 25px;
    }

    .module-number {

        display: none;
    }

    .module-card {

        width: 100%;
    }

    .banner-features {

        flex-wrap: wrap;
        justify-content: center;
    }
}

@media(max-width:576px) {
    .timeline {

    margin-top: 20px;
    }

    .content-section {

        padding: 70px 0;
    }

    .content-section h2 {

        font-size: 2rem;
    }

    .module-card {
        padding: 12px 14px;
        min-height: auto;
        gap: 12px;

        flex-direction: row;
        /* Mantener horizontal */
        text-align: left;

        margin-left: 10px;
        margin-right: 10px;
        border-radius: 16px;
    }

    .module-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .module-icon i {
        font-size: 20px;
    }

    .module-content h3 {
        font-size: .95rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .module-content p {
        font-size: .80rem;
        line-height: 1.4;
    }
    .banner-left{
        display:flex;
        align-items:center;
        gap:12px;
        width:100%;
    }

    .banner-icon{
        width:50px;
        height:50px;
        min-width:50px;
    }

    .banner-icon i{
        font-size:28px;
    }

    .banner-text h3{
        font-size:.95rem;
        margin-bottom:2px;
    }

    .banner-text p{
        font-size:.8rem;
        line-height:1.4;
    }
}

@media(max-width:991px) {


    .banner-left {

        width: 100%;
    }


    .content-banner{
        padding:22px;
        gap:20px;
    }

    .banner-features{
        width:100%;
        justify-content:flex-start;
    }
}

@media(max-width:576px){
.content-banner{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    margin-top:10px;
}
    .banner-left{
        display:flex;
        align-items:center;
        gap:12px;
        width:100%;
    }

    .banner-text h3{
        margin:0;
        font-size:0.75rem;
    }
    .text-naranja{
        color:orange;
    }

    .banner-features{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
        width:100%;
    }

    .feature-item{
        width:100%;
        justify-content:center;
        padding:12px 8px;
    }

    .feature-item{
        flex-direction:column;
        gap:6px;
        text-align:center;
    }

    .feature-item span{
        white-space:normal;
        font-size:.8rem;
    }
}
/* HEADER DEL MODULO */

.module-header{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;
}

.module-header h3{

    margin:0;

    color:#08152f;

    font-size:16px;;

    font-weight:700;

    line-height:1.1;
}

.btn-toggle{

    border:none;

    background:#10264f;

    color:#fff;

    font-size:.72rem;

    font-weight:600;

    padding:5px 12px;

    border-radius:30px;

    cursor:pointer;

    transition:.3s;

    white-space:nowrap;
}

.btn-toggle:hover{

    background:#ff7a00;
}

.module-description{

    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:
    max-height .4s ease,
    opacity .3s ease;

    margin-top:0;
}

.module-content.active .module-description{

    max-height:250px;

    opacity:1;

    margin-top:12px;
}

.btn-toggle.active{

    background:#ff7a00;
}
































.results-section{
    position:relative;
    padding:90px 0;
    background-image:url('../img/fondo_1.png');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    overflow:hidden;
}

.results-overlay{
    position:absolute;
    inset:0;
    background:rgba(8,21,47,.88);
}

.results-container{
    position:relative;
    z-index:2;
}

.deliverables-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.deliverable-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.1);

    border-radius:18px;

    padding:18px;

    display:flex;
    align-items:flex-start;
    gap:14px;

    transition:.3s;
    text-align:left;
}

.deliverable-card:hover{
    transform:translateY(-5px);
    border-color:#ff7a00;
}

.deliverable-card i{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,122,0,.12);

    border-radius:12px;

    color:#ff7a00;

    font-size:18px;

    min-width:42px;
}
.deliverable-card span{
    color:#fff;

    font-size:.9rem;

    line-height:1.45;

    font-weight:500;
}
.deliverable-content{
    display:flex;
    flex-direction:column;
}

.deliverable-content span{
    color:#fff;
    font-size:.9rem;
    line-height:1.45;
    font-weight:600;
    margin-bottom:6px;
}

.deliverable-content p{
    color:rgba(255,255,255,.75);
    font-size:.85rem;
    line-height:1.5;
    margin:0;
}
.certificate-box{
    margin-top:50px;
    background:#fff;
    border-radius:24px;
    padding:28px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.certificate-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#08152f;
    display:flex;
    align-items:center;
    justify-content:center;
}

.certificate-icon i{
    color:#ff7a00;
    font-size:28px;
}

.instructors{
    margin-top:60px;
    text-align:center;
}

.instructors h3{
    color:#fff;
    margin-bottom:10px;
}

.instructors p{
    color:rgba(255,255,255,.8);
}

.instructors-grid{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.instructor-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:22px;
}

.instructor-card i{
    font-size:28px;
    color:#ff7a00;
    margin-bottom:10px;
}

.instructor-card span{
    color:#fff;
    font-weight:600;
}
@media(max-width:768px){

    .deliverables-grid{
        grid-template-columns:1fr 1fr;
    }

    .certificate-box{
        flex-direction:column;
        text-align:center;
    }

    .instructors-grid{
        grid-template-columns:1fr;
    }
.deliverable-card i{
    display:none;
}
    .deliverable-card{
        padding:14px;
    }
.deliverable-content span{
    font-size:.9rem;
}

    .deliverable-card span{
        font-size:.85rem;
        line-height:1.1;
        text-align:justify;
    }
.deliverable-content p{
    font-size:.85rem;
        line-height:1.1;
        text-align:justify;
}
}



























/*==================================
INSTRUCTORES
==================================*/

.instructors-section{

    padding:60px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7f9fc
    );
}

/* GRID */

.instructors-grid{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:25px;

    margin-top:70px;
}

/* CARD */

.instructor-card{

    background:#fff;

    border-radius:28px;

    padding:15px 15px;

    text-align:center;

    border:1px solid rgba(255,122,0,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

.instructor-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #ff7a00,
        #ffb347
    );
}

.instructor-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(255,122,0,.15);
}

/* FOTO */

.instructor-photo{

    width:120px;
    height:120px;

    margin:auto;

    border-radius:50%;

    padding:4px;

    background:
    linear-gradient(
        135deg,
        #ff7a00,
        #ffb347
    );

    margin-bottom:20px;
}

.instructor-photo img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:50%;
}

/* NOMBRE */

.instructor-card h3{

    font-size:1.15rem;

    color:#08152f;

    margin-bottom:12px;

    line-height:1.2;
    font-weight:700;
}

/* CARGO */

.instructor-role{

    display:inline-block;

    padding:8px 14px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #ff7a00,
        #ff9d3f
    );

    color:white;

    font-size:.85rem;

    font-weight:700;

    margin-bottom:15px;

    box-shadow:
    0 6px 18px rgba(255,122,0,.25);
}

/* TEXTO */

.instructor-card p{

    color:#667085;

    line-height:1.2;

    font-size:.95rem;

    margin:0;
}

/* BANNER */

.instructors-banner{

    margin-top:70px;

    background:
    linear-gradient(
        135deg,
        #08152f,
        #10264f
    );

    color:white;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

.instructors-banner i{

    font-size:42px;

    color:#ff7a00;

    margin-bottom:20px;
}

.instructors-banner p{

    max-width:800px;

    margin:auto;

    line-height:1.9;

    font-size:1.05rem;
}

/*==================================
TABLET
==================================*/

@media(max-width:1200px){

    .instructors-grid{

        grid-template-columns:
        repeat(3,1fr);
    }
}

/*==================================
MOVIL
==================================*/

@media(max-width:768px){

    .instructors-section{

        padding:70px 0;
    }

    .instructors-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:15px;
    }

    .instructor-card{

        padding:20px 15px;
    }

    .instructor-photo{

        width:80px;
        height:80px;
    }

    .instructor-card h3{

        font-size:1rem;
        line-height:1.1;
    }

    .instructor-role{

        font-size:.75rem;

        padding:3px 5px;
    }

    .instructor-card p{

        font-size:.85rem;

        line-height:1.1;
    }

    .instructors-banner{

        padding:25px 20px;
    }

    .instructors-banner p{

        font-size:.9rem;
    }
}

.instructor-photo img{
    filter: grayscale(100%);
    transition:.4s;
}

.instructor-card:hover .instructor-photo img{
    filter: grayscale(0%);
}


















/*==================================
PRICING
==================================*/

.pricing-section{

    padding:90px 0;

    background:#fff;
}

.pricing-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:22px;

    margin-top:50px;
}

.price-card{

    background:#fff;

    border-radius:22px;

    padding:25px;

    text-align:center;

    border:1px solid #edf0f5;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;
}

.price-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.08);
}

.price-card h3{

    color:#08152f;

    font-size:1.1rem;

    margin-bottom:15px;
}

.price-value{

    font-size:2.3rem;

    font-weight:800;

    color:#08152f;

    margin-bottom:15px;
}

.price-card p{

    color:#677184;

    line-height:1.6;

    font-size:.92rem;
}

.featured{

    border:2px solid #ff7a00;
}

.price-badge{

    position:absolute;

    top:-12px;
    left:50%;

    transform:translateX(-50%);

    background:#ff7a00;

    color:#fff;

    font-size:.75rem;

    font-weight:700;

    padding:8px 14px;

    border-radius:30px;
}

.btn-price{

    margin-top:18px;

    border:none;

    background:#ff7a00;

    color:#fff;

    padding:12px 20px;

    border-radius:12px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.btn-price:hover{

    background:#e86900;
}

/* DESCUENTOS */

.group-discount{

    margin-top:40px;

    display:flex;

    align-items:center;

    gap:18px;

    background:#f8fafc;

    border-radius:20px;

    padding:22px;
}

.discount-icon{

    width:60px;
    height:60px;

    min-width:60px;

    border-radius:16px;

    background:#08152f;

    display:flex;

    align-items:center;

    justify-content:center;
}

.discount-icon i{

    color:#ff7a00;

    font-size:22px;
}

.group-discount h4{

    color:#08152f;

    margin-bottom:5px;
}

.group-discount p{

    margin:0;

    color:#677184;
}

/* MENSAJE */

.future-box{

    margin-top:45px;

    background:
    linear-gradient(
    135deg,
    #08152f,
    #10264f
    );

    border-radius:24px;

    padding:35px;

    text-align:center;

    color:#fff;
}

.future-box h3{

    margin-bottom:15px;
}

.future-box p{

    max-width:850px;

    margin:0 auto 12px;

    color:
    rgba(255,255,255,.85);

    line-height:1.7;
}

/* CTA */

.cta-box{

    margin-top:35px;

    background:#fff7f0;

    border:2px solid
    rgba(255,122,0,.15);

    border-radius:24px;

    padding:25px 30px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;
}

.cta-content h3{

    color:#08152f;

    margin-bottom:8px;
}

.cta-content p{

    margin:0;

    color:#677184;
}

.btn-cta{

    border:none;

    background:#ff7a00;

    color:#fff;

    padding:14px 24px;

    border-radius:14px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.btn-cta:hover{

    background:#e86900;
}


@media(max-width:768px){

    .pricing-grid{

        grid-template-columns:1fr;
    }

    .price-card{

        padding:20px;
    }

    .price-value{

        font-size:2rem;
    }

    .group-discount{

        flex-direction:column;

        text-align:center;
    }

    .cta-box{

        flex-direction:column;

        text-align:center;
    }

    .btn-cta{

        width:100%;
    }

    .btn-price{

        width:100%;
    }
}

    .btn-price{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;
}

.btn-price i{

    font-size:20px;
}
/*==================================
CIERRE PRECIOS
==================================*/

.closing-section{

    margin-top:50px;
}

.closing-card{

    background:
    linear-gradient(
        135deg,
        #08152f,
        #10264f
    );

    border-radius:22px;

    padding:28px 32px;

    color:white;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}

.closing-card::before{

    content:'';

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    rgba(255,122,0,.05);

    top:-80px;
    right:-80px;

    filter:blur(20px);
}

/* COLUMNAS */

.closing-left,
.closing-right{

    flex:1;

    position:relative;
    z-index:2;
}

.closing-divider{

    width:1px;
    align-self:stretch;

    background:
    rgba(255,255,255,.1);
}

/* ICONO */

.closing-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    background:
    rgba(255,122,0,.12);

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:20px;
}

.closing-icon i{

    font-size:28px;

    color:#ff7a00;
}

/* TAG */

.closing-tag{

    display:inline-block;

    padding:8px 14px;

    border-radius:50px;

    background:
    rgba(255,122,0,.12);

    color:#ff7a00;

    font-size:.8rem;

    font-weight:700;

    margin-bottom:15px;
}

/* TITULOS */

.closing-card h3{

    font-size:1.45rem;

    margin-bottom:10px;

    color:#fff;

    font-weight:700;
}

/* TEXTO */

.closing-card p{

    font-size:.95rem;

    line-height:1.65;

    color:rgba(255,255,255,.82);

    margin-bottom:15px;

}

/* BOTON */

.btn-discount{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 18px;

    border-radius:12px;

    background:#ff7a00;

    color:white;

    text-decoration:none;

    font-size:.9rem;

    font-weight:700;

    transition:.3s;
}

.btn-discount:hover{

    transform:translateY(-2px);

    background:#ff8d1e;
}

/* RESPONSIVE */

@media(max-width:991px){

    .closing-card{

        flex-direction:column;

        text-align:center;
    }

    .closing-divider{

        width:100%;
        height:1px;
    }

    .closing-icon{

        margin:auto;
        margin-bottom:20px;
    }
}

@media(max-width:576px){

    .closing-section{

        margin-top:20px;
    }

    .closing-card{

        padding:16px;

        border-radius:18px;
    }

    .closing-card h3{

        font-size:1rem;

        margin-bottom:6px;
    }

    .closing-card p{

        font-size:.78rem;

        line-height:1.4;

        margin-bottom:10px;
    }

    .btn-discount{

        width:100%;

        justify-content:center;

        padding:10px 14px;

        font-size:.8rem;

        border-radius:10px;
    }
}




































/*==================================
PREGUNTAS FRECUENTES
==================================*/

.faqx-section{

    padding:90px 0;

    background:#ffffff;
}

.faqx-wrapper{

    max-width:900px;

    margin:50px auto 0;
}

.faqx-item{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:18px;

    margin-bottom:14px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.3s;
}

.faqx-item:hover{

    border-color:rgba(255,122,0,.25);

    box-shadow:
    0 15px 35px rgba(255,122,0,.08);
}

/* PREGUNTA */

.faqx-question{

    width:100%;

    border:none;

    background:none;

    cursor:pointer;

    padding:18px 22px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    text-align:left;
}

.faqx-left{

    display:flex;

    align-items:center;

    gap:14px;

    flex:1;
}

.faqx-left i{

    color:#ff7a00;

    font-size:1rem;

    flex-shrink:0;
}

.faqx-left span{

    color:#08152f;

    font-size:1rem;

    font-weight:700;

    line-height:1.4;
}

/* BOTON */

.faqx-toggle{

    width:34px;
    height:34px;

    min-width:34px;

    border-radius:50%;

    background:#08152f;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.1rem;

    transition:.3s;
}

/* RESPUESTA */

.faqx-answer{

    max-height:0;

    overflow:hidden;

    transition:
    max-height .4s ease,
    padding .3s ease;
}

.faqx-answer p{

    margin:0;

    padding:0 22px 20px 50px;

    color:#667085;

    font-size:.95rem;

    line-height:1.7;
}

/* ACTIVO */

.faqx-item.active .faqx-answer{

    max-height:250px;
}

.faqx-item.active .faqx-toggle{

    background:#ff7a00;

    transform:rotate(45deg);
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:576px){

    .faqx-section{

        padding:60px 0;
    }

    .faqx-wrapper{

        margin-top:30px;
    }

    .faqx-question{

        padding:14px 15px;

        gap:10px;
    }

    .faqx-left{

        gap:10px;
    }

    .faqx-left i{

        font-size:.9rem;
    }

    .faqx-left span{

        font-size:.82rem;

        line-height:1.3;
    }

    .faqx-answer p{

        padding:0 15px 15px 35px;

        font-size:.78rem;

        line-height:1.5;
    }

    .faqx-toggle{

        width:28px;
        height:28px;

        min-width:28px;

        font-size:.95rem;
    }
}

























/*==================================
TESTIMONIOS
==================================*/

.testimonials-section{

    padding:100px 0;

    background:#fff;
}

/* GRID */

.testimonials-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    max-width:1100px;

    margin-left:auto;
    margin-right:auto;
}

/* TARJETA */

.testimonial-card{

    max-width: 320px;

    margin: 0 auto;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(8,21,47,.08);

    box-shadow:
    0 12px 35px rgba(0,0,0,.06);

    transition:.35s ease;
}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(255,122,0,.12);
}

/* IMAGEN */

.testimonial-image{

    padding:10px;

    background:
    linear-gradient(
        135deg,
        #08152f,
        #10264f
    );

    position:relative;
}

.testimonial-image::after{

    content:'';

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:3px;

    background:
    linear-gradient(
        90deg,
        #ff7a00,
        #ffb347
    );
}

.testimonial-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    object-position:top;

    display:block;

    border-radius:16px;
}

/* CONTENIDO */

.testimonial-info{

    padding:18px 20px;
}

.testimonial-info h4{

    margin:0;

    color:#08152f;

    font-size:1rem;

    font-weight:700;
}

.testimonial-role{

    display:block;

    margin-top:5px;

    color:#ff7a00;

    font-size:.82rem;

    font-weight:600;
}

/* PAIS */

.testimonial-country{

    display:flex;

    align-items:center;

    gap:8px;

    margin-top:10px;

    color:#64748b;

    font-size:.82rem;

    font-weight:500;
}

.testimonial-country img{

    width:20px;

    height:14px;

    object-fit:cover;

    border-radius:3px;

    box-shadow:
    0 2px 6px rgba(0,0,0,.12);

    flex-shrink:0;
}

.testimonial-country span{

    font-size:1rem;
}

/* TEXTO */

.testimonial-info p{

    margin-top:15px;

    padding-top:15px;

    border-top:1px solid #edf2f7;

    color:#4b5563;

    font-size:.88rem;

    line-height:1.6;

    margin-bottom:0;
}

/* RESPONSIVE TABLET */

@media(max-width:991px){

    .testimonials-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .testimonials-section{

        padding:70px 0;
    }

    .testimonials-grid{

        grid-template-columns:1fr;

        gap:18px;

        margin-top:40px;

        max-width:320px;

        margin-left:auto;
        margin-right:auto;
    }

    .testimonial-image{

        padding:8px;
    }

    .testimonial-image img{

        height:260px;
    }

    .testimonial-info{

        padding:15px;
    }

    .testimonial-info h4{

        font-size:.95rem;
    }

    .testimonial-role{

        font-size:.75rem;
    }

    .testimonial-country{

        font-size:.75rem;
    }

    .testimonial-info p{

        font-size:.82rem;

        line-height:1.5;

        margin-top:12px;

        padding-top:12px;
    }

}






















/*PIE DE PAGINA*/
/* ===================================
   FOOTER
=================================== */

.footer {
    background-color: #000000 !important;
    background-image: none !important;
    border-top: 1px solid rgba(255, 0, 0, .08);
}

.footer-container{

    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:
        1.4fr
        1fr
        1.3fr
        .8fr;

    gap:50px;

    padding:60px 20px;
}

.footer-col h4{

    color:#fff;
    font-size:15px;
    margin-bottom:25px;

    letter-spacing:1px;
}

.footer-brand img{
    width:180px;
    margin-bottom:20px;
}

.footer-brand p{

    color:#8f96a3;
    line-height:1.8;
    font-size:14px;
    margin-bottom:15px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{

    color:#9ca3af;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#1d8cff;
}

/* contacto */

.contact-list li{

    display:flex;
    align-items:flex-start;
    gap:12px;

    color:#9ca3af;
    font-size:14px;
}

.contact-list i{

    width:32px;
    height:32px;

    min-width:32px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(2, 0, 127, 0.12);

    color:#067600;
}

/* redes */

.social-links{
    display:flex;
    gap:12px;
}

.social-links a{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.15);

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.social-links a:hover{

    background:#067600;
    border-color:#067600;

    transform:translateY(-4px);
}

.social-links i{
    font-size:18px;
}

/* barra inferior */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:18px 20px;

    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;
}

.footer-bottom p{

    color:#7c8595;
    font-size:13px;
}

.footer-links{

    display:flex;
    align-items:center;
    gap:15px;
}

.footer-links a{

    color:#7c8595;
    text-decoration:none;
    font-size:13px;
}

.footer-links a:hover{
    color:#1d8cff;
}


@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:576px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .contact-list li{
        justify-content:center;
        text-align:left;
    }

    .social-links{
        justify-content:center;
    }

    .footer-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .footer-brand img{
        margin:auto auto 20px;
        display:block;
    }

    .uu{
    display:none;
}

}


@media (min-width:768px){
    .menu-toggle{
        display:none;
    }
}