/* ============================================================= */
/* VARIABLES Y ESTILOS GENERALES                                 */
/* ============================================================= */

:root {
    --pro-navy: #0A3D8F;
    --pro-blue: #2568E8;
    --pro-turquoise: #00B7B3;
    --pro-green: #2ECC71;
    --pro-night: #0F172A;
    --pro-dark-gray: #334155;
    --pro-gray: #64748B;
    --pro-light-gray: #94A3B8;
    --pro-border: #E2E8F0;
    --pro-light: #F8FAFC;
    --pro-white: #FFFFFF;
    --pro-navy-light: #2568E8;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--pro-night);
    background: var(--pro-white);
}

section {
    scroll-margin-top: 100px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

/* ============================================================= */
/* BOTONES                                                       */
/* ============================================================= */

.btn {
    border-radius: 999px;
    font-weight: 800;
    padding: 14px 27px;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-pro-yellow {
    background: linear-gradient( 135deg, #00B7B3 0%, #2568E8 55%, #0A3D8F 100% );
    color: #FFFFFF;
    border: 0;
    box-shadow: 0 8px 20px rgba(37, 104, 232, 0.24), 0 3px 8px rgba(0, 183, 179, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-pro-yellow:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 12px 28px rgba(37, 104, 232, 0.32), 0 5px 12px rgba(0, 183, 179, 0.22);
}

.btn-pro-green {
    background: linear-gradient( 135deg, #2ECC71 0%, #00B7B3 55%, #2568E8 100% );
    color: #FFFFFF;
    border: 0;
    box-shadow: 0 7px 18px rgba(46, 204, 113, 0.20);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-pro-green:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 10px 24px rgba(0, 183, 179, 0.25);
}

.btn-pro-outline {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.btn-pro-outline:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

/* ============================================================= */
/* TOP BAR                                                       */
/* ============================================================= */

.pro-topbar {
    width: 100%;

    background: #101a30;

    color: #ffffff;

    min-height: 40px;

    display: flex;
    align-items: center;

    position: relative;

    z-index: 1031;
}


.pro-topbar-content {
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 6px 20px;

    font-size: 14px;
    font-weight: 700;
}


.pro-topbar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #00b7b3;

    color: #ffffff;

    padding: 4px 12px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.4px;
}


.pro-topbar-text {
    color: #ffffff;
}


.pro-topbar-link {
    color: #00b7b3;

    font-weight: 800;

    transition: opacity 0.2s ease;
}


.pro-topbar-link:hover {
    color: #00d3ce;

    opacity: 0.9;
}

/* ============================================================= */
/* NAVBAR                                                        */
/* ============================================================= */

.pro-navbar {
    background: rgba(248, 250, 252, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 9px 0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.10);
    width: calc(100% - 14px);
    max-width: none;
    margin: 5px auto 0;
}

.pro-logo {
    color: var(--pro-navy) !important;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.pro-logo span {
    display: inline-block;
    background: var(--pro-turquoise);
    color: var(--pro-white);
    padding: 1px 7px;
    border-radius: 8px;
}

.pro-navbar .nav-link {
    color: var(--pro-dark-gray);
    margin: 0 8px;
    font-size: 14px;
    font-weight: 600;
}

.pro-navbar .nav-link:hover {
    color: var(--pro-blue);
}
@media (max-width: 767px) {

    .pro-topbar-content {
        gap: 8px;

        padding: 6px 10px;

        font-size: 11px;
    }


    .pro-topbar-badge {
        padding: 3px 8px;

        font-size: 9px;
    }


    .pro-topbar-link {
        font-size: 10px;
    }

}
/* ============================================================= */
/* HERO                                                          */
/* ============================================================= */

.hero-section {
    min-height: 760px;
    background: radial-gradient( circle at 78% 25%, rgba(37, 104, 232, 0.85) 0%, rgba(37, 104, 232, 0.35) 22%, transparent 46% ), linear-gradient( 135deg, var(--pro-navy) 0%, #082F6F 55%, var(--pro-night) 100% );
    display: flex;
    align-items: center;
    padding: 65px 0 70px;
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-block;
    color: var(--pro-turquoise);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-eyebrow.dark {
    color: var(--pro-blue);
}

.hero-title {
    color: var(--pro-white);
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2.5px;
    max-width: 690px;
}

.hero-title span {
    color: var(--pro-turquoise);
}

.hero-description {
    color: rgba(248, 250, 252, 0.85);
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
    margin-top: 28px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 34px;
}

.hero-image-wrapper {
    background: linear-gradient( 145deg, var(--pro-white), var(--pro-light) );
    border-radius: 32px;
    min-height: 460px;
    padding: 15px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
}

/* ============================================================= */
/* ENCABEZADOS DE SECCIÓN                                        */
/* ============================================================= */

.section-heading {
    max-width: 820px;
    margin-bottom: 30px;
}

.section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.contact-section h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.section-heading h2 {
    color: var(--pro-night);
}

.section-heading p {
    font-size: 17px;
    color: var(--pro-gray);
    line-height: 1.7;
}

/* ============================================================= */
/* CONTACTO                                                      */
/* ============================================================= */

.contact-section {
    background: linear-gradient( 135deg, var(--pro-navy), #082F6F 60%, var(--pro-night) );
    color: var(--pro-white);
    padding: 105px 0;
}

.contact-section h2 {
    color: var(--pro-white);
}

.contact-section p {
    color: rgba(248, 250, 252, 0.75);
    font-size: 17px;
    line-height: 1.7;
}

.contact-form {
    background: var(--pro-white);
    color: var(--pro-night);
    padding: 35px;
    border-radius: 27px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
}

.contact-form .form-label {
    color: var(--pro-dark-gray);
    font-size: 13px;
    font-weight: 800;
}

.contact-form .form-control,
.contact-form .form-select {
    color: var(--pro-night);
    background: var(--pro-white);
    border-radius: 12px;
    min-height: 50px;
    border-color: var(--pro-border);
}

.contact-form .form-control::placeholder {
    color: var(--pro-light-gray);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--pro-blue);
    box-shadow: 0 0 0 3px rgba(37, 104, 232, 0.12);
}

.form-message {
    display: none;
    margin-top: 17px;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
}

/* ============================================================= */
/* CTA FINAL                                                     */
/* ============================================================= */

.final-cta {
    background: var(--pro-white);
    padding: 85px 0;
}

.final-cta-card {
    background: radial-gradient( circle at 50% 0%, rgba(37, 104, 232, 0.65), transparent 45% ), var(--pro-night);
    color: var(--pro-white);
    border-radius: 30px;
    padding: 70px 25px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
}

.final-cta-card h2 {
    color: var(--pro-white);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -1px;
}

.final-cta-card p {
    color: rgba(248, 250, 252, 0.75);
    margin: 18px auto 28px;
    max-width: 600px;
    font-size: 17px;
}

/* ============================================================= */
/* FOOTER                                                        */
/* ============================================================= */

.footer {
    border-top: 1px solid var(--pro-border);
    background: var(--pro-light);
    padding: 70px 0 25px;
}

.footer-logo {
    color: var(--pro-navy);
    font-size: 31px;
    font-weight: 900;
    margin-bottom: 17px;
}

.footer-logo span {
    display: inline-block;
    background: var(--pro-turquoise);
    color: var(--pro-white);
    border-radius: 7px;
    padding: 1px 6px;
}

.footer p {
    color: var(--pro-gray);
    max-width: 420px;
    line-height: 1.7;
    font-size: 14px;
}

.footer h4 {
    color: var(--pro-navy);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 18px;
}

.footer a {
    display: block;
    color: var(--pro-dark-gray);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer a:hover {
    color: var(--pro-blue);
}

.footer-bottom {
    border-top: 1px solid var(--pro-border);
    margin-top: 55px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--pro-gray);
    font-size: 12px;
}

/* ============================================================= */
/* RESPONSIVE BASE                                               */
/* ============================================================= */

@media (max-width: 991px) {
    .pro-navbar .navbar-collapse {
        padding-top: 20px;
    }

    .pro-navbar .nav-link {
        padding: 10px 0;
    }

    .pro-navbar .btn {
        margin-top: 15px;
    }

    .hero-section {
        text-align: center;
        padding: 70px 0;
        min-height: auto;
    }

    .hero-title {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
    }

    .hero-title {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-section {
        padding: 75px 0;
    }

    .section-heading h2,
    .contact-section h2 {
        font-size: 35px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================= */
/* BOTONES — PROFUNDIDAD Y ESTADOS                               */
/* ============================================================= */

.btn-pro-yellow,
.btn-pro-green {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.28), 0 4px 10px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-pro-yellow:hover,
.btn-pro-green:hover {
    transform: translateY(-4px);
    filter: brightness(1.08);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.32), 0 7px 16px rgba(37, 104, 232, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-pro-yellow:active,
.btn-pro-green:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

/* ============================================================= */
/* LANDING PROIA — COMPONENTES ACTUALES                          */
/* ============================================================= */

.pro-logo img {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo img {
    display: block;
    height: 58px;
    width: auto;
    object-fit: contain;
}

/* ============================================================= */
/* HERO — BENEFICIOS                                             */
/* ============================================================= */

.hero-proia-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-proia-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-proia-point:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(0, 183, 179, 0.45);
}

.hero-proia-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient( 135deg, var(--pro-turquoise), var(--pro-blue) );
    color: white;
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(0, 183, 179, 0.25);
}

.hero-proia-point strong {
    display: block;
    color: white;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 3px;
}

.hero-proia-point p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* ============================================================= */
/* PROIA — MISIÓN, VISIÓN Y PILARES                              */
/* ============================================================= */

.proia-section {
    padding: 105px 0;
    background: radial-gradient( circle at 10% 10%, rgba(0, 183, 179, 0.08), transparent 28% ), var(--pro-white);
}

.proia-info-card {
    position: relative;
    padding: 40px;
    background: white;
    border: 1px solid var(--pro-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.proia-info-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -80px;
    right: -70px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(0, 183, 179, 0.20), transparent 70% );
}

.proia-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 104, 232, 0.30);
    box-shadow: 0 25px 60px rgba(10, 61, 143, 0.13);
}

.proia-info-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 17px;
    background: linear-gradient( 135deg, var(--pro-turquoise), var(--pro-blue) );
    color: white;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(37, 104, 232, 0.20);
}

.proia-info-card h3 {
    color: var(--pro-navy);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
}

.proia-info-card p {
    color: var(--pro-gray);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.proia-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.proia-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 145px;
    padding: 25px;
    text-align: center;
    background: linear-gradient( 145deg, var(--pro-white), var(--pro-light) );
    border: 1px solid var(--pro-border);
    border-radius: 22px;
    color: var(--pro-navy);
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proia-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(37, 104, 232, 0.12);
}

.proia-pillar i {
    margin-bottom: 13px;
    font-size: 27px;
    color: var(--pro-turquoise);
}

.proia-pillar span {
    font-size: 17px;
}

.proia-quote {
    max-width: 850px;
    margin: 50px auto 0;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient( 135deg, var(--pro-night), var(--pro-navy) );
    color: white;
    font-size: 23px;
    font-weight: 800;
    font-style: italic;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

/* ============================================================= */
/* PREPA + PROIA                                                 */
/* ============================================================= */

.prepa-proia-section {
    padding: 105px 0;
    background: linear-gradient( 180deg, var(--pro-light), #eef4ff );
}

.program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 38px;
    background: white;
    border: 1px solid var(--pro-border);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 65px rgba(10, 61, 143, 0.15);
}

.program-card.featured {
    background: linear-gradient( 145deg, var(--pro-navy), #082F6F );
    border-color: rgba(37, 104, 232, 0.65);
    color: white;
}

.program-card-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 19px;
    background: linear-gradient( 135deg, var(--pro-turquoise), var(--pro-blue) );
    color: white;
    font-size: 26px;
    box-shadow: 0 12px 25px rgba(0, 183, 179, 0.23);
}

.program-label {
    color: var(--pro-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.program-card.featured .program-label {
    color: #B9FFFD;
}

.program-card h3 {
    color: var(--pro-navy);
    font-size: 44px;
    font-weight: 900;
    margin: 8px 0 25px;
}

.program-card.featured h3 {
    color: white;
}

.program-detail {
    padding: 17px 0;
    border-top: 1px solid var(--pro-border);
}

.program-card.featured .program-detail {
    border-color: rgba(255, 255, 255, 0.13);
}

.program-detail strong {
    display: block;
    color: var(--pro-night);
    margin-bottom: 5px;
}

.program-card.featured .program-detail strong {
    color: #B9FFFD;
}

.program-detail p {
    color: var(--pro-gray);
    line-height: 1.6;
    margin: 0;
}

.program-card.featured .program-detail p {
    color: rgba(255, 255, 255, 0.78);
}

.program-card .btn {
    margin-top: auto;
}

/* ============================================================= */
/* VALOR DIFERENCIAL                                             */
/* ============================================================= */

.value-section {
    margin-top: 70px;
}

.value-card {
    padding: 30px;
    background: white;
    border: 1px solid var(--pro-border);
    border-radius: 23px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 183, 179, 0.40);
    box-shadow: 0 20px 45px rgba(10, 61, 143, 0.12);
}

.value-card i {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 17px;
    background: rgba(0, 183, 179, 0.11);
    color: var(--pro-turquoise);
    font-size: 22px;
}

.value-card h3 {
    color: var(--pro-navy);
    font-size: 20px;
    font-weight: 900;
}

.value-card p {
    color: var(--pro-gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================= */
/* CURSOS                                                        */
/* ============================================================= */

.course-section {
    padding: 110px 0;
    background: var(--pro-white);
}

.course-section h2,
.nom-section h2 {
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
}

.course-section h2 {
    color: var(--pro-night);
}

.course-section p {
    color: var(--pro-gray);
    line-height: 1.75;
    font-size: 16px;
}

.course-small-title {
    margin-top: 25px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 900;
    color: var(--pro-turquoise);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================= */
/* DOCENTES                                                      */
/* ============================================================= */

.course-section-dark {
    background: radial-gradient( circle at 90% 10%, rgba(37, 104, 232, 0.30), transparent 28% ), linear-gradient( 135deg, var(--pro-night), var(--pro-navy) );
    color: white;
}

.course-section-dark h2 {
    color: white;
}

.course-section-dark p {
    color: rgba(255, 255, 255, 0.74);
}

.course-section-dark .course-small-title {
    color: #B9FFFD;
}

/* ============================================================= */
/* MÓDULOS                                                       */
/* ============================================================= */

.modules-card {
    padding: 35px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.modules-card.light {
    background: linear-gradient( 145deg, var(--pro-light), white );
    border: 1px solid var(--pro-border);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.modules-label {
    display: inline-block;
    margin-bottom: 25px;
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient( 135deg, var(--pro-turquoise), var(--pro-blue) );
    color: white;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.module-item > span {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient( 135deg, var(--pro-turquoise), var(--pro-blue) );
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.module-item small {
    display: block;
    color: #B9FFFD;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.module-item strong {
    color: white;
    font-size: 15px;
}

/* ============================================================= */
/* EMPRENDEDORES — MÓDULOS                                       */
/* ============================================================= */

.modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.module-mini {
    position: relative;
    min-height: 145px;
    padding: 22px;
    border-radius: 18px;
    background: white;
    border: 1px solid var(--pro-border);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.module-mini:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 104, 232, 0.35);
    box-shadow: 0 14px 30px rgba(10, 61, 143, 0.10);
}

.module-mini > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    border-radius: 12px;
    background: linear-gradient( 135deg, var(--pro-turquoise), var(--pro-blue) );
    color: white;
    font-size: 11px;
    font-weight: 900;
}

.module-mini small {
    display: block;
    color: var(--pro-gray);
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 5px;
}

.module-mini strong {
    display: block;
    color: var(--pro-navy);
    font-size: 14px;
    line-height: 1.45;
}

/* ============================================================= */
/* FRASES DE CURSO                                               */
/* ============================================================= */

.course-quote {
    margin: 28px 0 0;
    padding: 24px;
    border-left: 4px solid var(--pro-turquoise);
    border-radius: 0 15px 15px 0;
    background: rgba(255, 255, 255, 0.07);
    color: white;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
}

.course-quote.dark {
    background: rgba(37, 104, 232, 0.06);
    color: var(--pro-dark-gray);
    border-left-color: var(--pro-blue);
}

/* ============================================================= */
/* NOM-035                                                       */
/* ============================================================= */

.nom-section {
    padding: 110px 0;
    background: radial-gradient( circle at 20% 0%, rgba(0, 183, 179, 0.25), transparent 30% ), linear-gradient( 135deg, #082F6F, var(--pro-night) );
    color: white;
}

.nom-section h2 {
    color: white;
}

.nom-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.75;
}

.nom-quote {
    margin: 27px 0;
    padding: 21px 24px;
    border-left: 4px solid var(--pro-turquoise);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 0 17px 17px 0;
    color: white;
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
}

.nom-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.nom-module {
    min-height: 180px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.nom-module:hover {
    transform: translateY(-5px);
    background: rgba(0, 183, 179, 0.12);
}

.nom-module > span {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient( 135deg, var(--pro-turquoise), var(--pro-blue) );
    color: white;
    font-weight: 900;
    margin-bottom: 25px;
}

.nom-module small {
    display: block;
    color: #B9FFFD;
    font-size: 10px;
    font-weight: 900;
    margin-bottom: 5px;
}

.nom-module strong {
    color: white;
    font-size: 16px;
    line-height: 1.45;
}

/* ============================================================= */
/* EDITORIAL                                                     */
/* ============================================================= */

.editorial-section {
    padding: 100px 0;
    background: var(--pro-light);
}

.editorial-card {
    padding: 60px;
    border-radius: 34px;
    background: radial-gradient( circle at 90% 0%, rgba(0, 183, 179, 0.40), transparent 35% ), linear-gradient( 135deg, var(--pro-navy), var(--pro-night) );
    color: white;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.editorial-card h2 {
    color: white;
    font-size: clamp(38px, 4vw, 55px);
    font-weight: 900;
    margin-bottom: 17px;
}

.editorial-card p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.editorial-icon {
    width: 160px;
    height: 160px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #B9FFFD;
    font-size: 60px;
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 20px 45px rgba(15, 23, 42, 0.25);
}

/* ============================================================= */
/* REDES SOCIALES                                                */
/* ============================================================= */

.social-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
    width: 100%;
    max-width: 430px;
}

.social-links a {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    align-items: center;
    width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
    transform: translateX(5px);
    background: rgba(0, 183, 179, 0.13);
    border-color: rgba(0, 183, 179, 0.45);
    color: white;
}

.social-links i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient( 135deg, var(--pro-turquoise), var(--pro-blue) );
    color: white;
    font-size: 18px;
}

.social-links span {
    grid-column: 2;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
}

/* ============================================================= */
/* WHATSAPP FLOTANTE                                             */
/* ============================================================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 135deg, #25D366, #128C7E );
    color: white;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 38px rgba(18, 140, 126, 0.45);
}

/* ============================================================= */
/* HERO — DISTRIBUCIÓN ACTUAL                                    */
/* ============================================================= */

.hero-image-main {
    position: relative;
    width: 100%;
    min-height: 610px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: #ffffff;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.hero-image-main .hero-image {
    width: 100%;
    height: 100%;
    max-height: 570px;
    object-fit: contain;
}

.hero-proia-points-inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-top: 34px;
}

.hero-proia-points-inline .hero-proia-point {
    min-height: 84px;
    padding: 12px 14px;
    gap: 11px;
    border-radius: 16px;
}

.hero-proia-points-inline .hero-proia-point:last-child {
    grid-column: 1 / -1;
}

.hero-proia-points-inline .hero-proia-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 14px;
}

.hero-proia-points-inline strong {
    font-size: 12px;
}

.hero-proia-points-inline p {
    font-size: 10px;
    line-height: 1.35;
}

.hero-section .hero-title {
    max-width: 720px;
}

.hero-section .hero-description {
    max-width: 680px;
}

/* ============================================================= */
/* RESPONSIVE HERO                                               */
/* ============================================================= */

@media (max-width: 991px) {
    .hero-image-main {
        min-height: auto;
        margin-top: 10px;
        transform: none;
    }

    .hero-image-main .hero-image {
        max-height: 520px;
    }
}

@media (max-width: 767px) {
    .hero-proia-points-inline {
        grid-template-columns: 1fr;
    }

    .hero-proia-points-inline .hero-proia-point:last-child {
        grid-column: auto;
    }

    .hero-image-main {
        padding: 18px;
        border-radius: 25px;
    }
}