/**
 * Landing Page Padres e Hijos - Estilos UP 2025
 *
 * Hero section con diseño moderno
 * Basado en el diseño de Figma node 308:2
 *
 * @author Daniel Quino
 * @since 2025-01-02
 */

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --lp-green: #00ff24;
    --lp-blue: #0064ff;
    --lp-darkblue: #0E1F43;
    --lp-white: #ffffff;
    --lp-magenta: #ea12ff;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

.landing-padres-hijos {
    margin: 0;
    padding: 0;
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.landing-padres-hijos * {
    box-sizing: border-box;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.lp-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* Background */
.lp-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lp-hero__background picture {
    display: block;
    width: 100%;
    height: 100%;
}

.lp-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.lp-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 53.25%,
        rgba(0, 0, 0, 0.4) 100%
    );
    pointer-events: none;
}

/* Container - usa container-wide de up2025-styles.css */
.lp-hero__container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    /* max-width y padding vienen de .container-wide */
}

/* Logo */
.lp-hero__logo {
    padding: 24px 0;
}

.lp-hero__logo img {
    height: 60px;
    width: auto;
}

.lp-hero__logo a {
    display: inline-block;
}

/* Content wrapper */
.lp-hero__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    /* padding-top: 80px; */
}

/* Text content - Left side */
.lp-hero__text {
    flex: 1;
    max-width: 550px;
    padding-top: 50px;
}

.lp-hero__title {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: clamp(48px, 6vw, 83px);
    line-height: 0.9;
    letter-spacing: -1.67px;
    text-transform: uppercase;
    color: var(--lp-green);
    margin: 0 0 40px 0;
    font-stretch: 60%;
    /* Fallback for browsers that don't support font-stretch */
    font-variation-settings: 'wdth' 60;
}

.lp-hero__subtitle {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 510;
    font-size: 22px;
    line-height: 1.4;
    color: var(--lp-white);
    margin: 0 0 40px 0;
    max-width: 370px;
}

.lp-hero__subtitle strong {
    font-weight: 900;
    color: var(--lp-green);
}

/* Video CTA */
.lp-hero__video-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.lp-hero__play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    transition: transform 0.3s ease;
}

.lp-hero__play-icon:hover {
    transform: scale(1.1);
}

.lp-hero__play-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-hero__video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    background-color: var(--lp-blue);
    border: none;
    border-radius: 22px;
    color: var(--lp-white);
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 590;
    font-size: 30px;
    line-height: 1.25;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-hero__video-btn:hover {
    background-color: #0050cc;
    color: var(--lp-white);
    text-decoration: none;
    transform: translateY(-2px);
}
.ao-form label.ao-form-label{
    line-height: 1.3 !important;
}
/* Form - Right side */
.lp-hero__form {
    width: 450px;
    flex-shrink: 0;
    background-color: var(--lp-blue);
    border-radius: 20px;
    padding: 20px 15px 20px;
}

.lp-hero__form-title {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 18px;
    letter-spacing: -1.08px;
    text-transform: uppercase;
    color: var(--lp-white);
    text-align: center;
    margin: 0 0 8px 0;
    font-stretch: 132%;
    font-variation-settings: 'wdth' 132;
}

.lp-hero__form-subtitle {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: var(--lp-white);
    text-align: center;
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.lp-hero__form-content {
    /* Estilos para el formulario externo de ACF */
}

/* Estilos genericos para formularios ActOn */
.lp-hero__form-content input[type="text"],
.lp-hero__form-content input[type="email"],
.lp-hero__form-content input[type="tel"],
.lp-hero__form-content select {
    width: 100%;
    /* height: 36px; */
    padding: 6px 12px;
    background-color: var(--lp-white);
    border: none;
    border-radius: 0;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-size: 15px;
    color: #868fa1;
    margin-bottom: 8px;
}

.lp-hero__form-content input[type="text"]:focus,
.lp-hero__form-content input[type="email"]:focus,
.lp-hero__form-content input[type="tel"]:focus,
.lp-hero__form-content select:focus {
    outline: 2px solid var(--lp-green);
}

.lp-hero__form-content label {
    /* font-family: 'Arial Narrow', Arial, sans-serif; */
    font-size: 12px;
    color: var(--lp-white);
    display: block;
    margin-bottom: 4px;
}

.lp-hero__form-content input[type="submit"],
.lp-hero__form-content button[type="submit"] {
    background-color: var(--lp-green) !important;
    border: none !important;
    color: var(--lp-darkblue) !important;
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
    display: block;
    margin: 10px auto 0;
}

.lp-hero__form-content input[type="submit"]:hover,
.lp-hero__form-content button[type="submit"]:hover {
    background-color: #00cc1e;
    transform: translateY(-2px);
}

.lp-hero__form-terms {
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-white);
    text-align: center;
    margin-bottom: 0;
    line-height: 1.4;
}

.lp-hero__form-terms a {
    color: var(--lp-white);
    text-decoration: underline;
}

.lp-hero__form-terms a:hover {
    color: var(--lp-green);
}

/* ==========================================================================
   BENEFITS SECTION - Atrévete a liderar el futuro
   ========================================================================== */
.lp-benefits {
    padding: 60px 0 50px;
    background-color: var(--lp-white);
}

.lp-benefits__title {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 540;
    font-size: 50px;
    line-height: 1;
    letter-spacing: -2.5px;
    text-align: center;
    color: var(--lp-darkblue);
    margin: 0 0 40px 0;
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
}

.lp-benefits__title .text-blue {
    color: var(--lp-blue);
}

.lp-benefits__list {
    display: none; /* Oculto temporalmente */
    margin-bottom: 50px;
}

.lp-benefits__item-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 2rem;
    max-width: 1150px;
    margin: 0 auto;
}

.lp-benefits__number {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    flex-shrink: 0;
    min-width: 60px;
    text-align: right;
    font-stretch: 132%;
    font-variation-settings: 'wdth' 132;
}

.lp-benefits__text {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 540;
    font-size: 30px;
    line-height: 1.1;
    margin: 0;
    padding-top: 5px;
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
}

/* Item variants */
.lp-benefits__item--dark {
    background-color: var(--lp-darkblue);
}

.lp-benefits__item--dark .lp-benefits__number,
.lp-benefits__item--dark .lp-benefits__text {
    color: var(--lp-green);
}

.lp-benefits__item--green {
    background-color: var(--lp-green);
}

.lp-benefits__item--green .lp-benefits__number,
.lp-benefits__item--green .lp-benefits__text {
    color: var(--lp-darkblue);
}

.lp-benefits__item--blue {
    background-color: var(--lp-blue);
}

.lp-benefits__item--blue .lp-benefits__number,
.lp-benefits__item--blue .lp-benefits__text {
    color: var(--lp-white);
}

.lp-benefits__item--light {
    background-color: rgba(0, 0, 0, 0.05);
}

.lp-benefits__item--light .lp-benefits__number,
.lp-benefits__item--light .lp-benefits__text {
    color: var(--lp-darkblue);
}


/* CTA Button */
.lp-benefits__cta {
    text-align: center;
    padding: 0 24px;
}

.lp-benefits__btn {
    display: inline-block;
    padding: 14px 50px;
    background-color: var(--lp-magenta);
    border: none;
    border-radius: 22px;
    color: var(--lp-white);
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 590;
    font-size: 30px;
    line-height: 1.25;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-benefits__btn:hover {
    background-color: #c70edb;
    color: var(--lp-white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ==========================================================================
   HIGHLIGHTS - Grid de estadísticas
   ========================================================================== */
.lp-highlights {
    background-color: var(--lp-white);
    padding: 50px 0;
}

.lp-highlights__grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.lp-highlights__item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lp-highlights__divider {
    width: 1px;
    background-color: var(--lp-magenta);
    flex-shrink: 0;
}

.lp-highlights__text {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 22px;
    line-height: 1.1;
    color: var(--lp-blue);
    margin: 0;
    font-variation-settings: 'wdth' 75;
}

.lp-highlights__text .text-green {
    color: var(--lp-green);
}

.lp-highlights__number {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 50px;
    line-height: 1;
    margin: 0;
    color: var(--lp-blue);
    font-variation-settings: 'wdth' 75;
}

.lp-highlights__number--green {
    color: var(--lp-green);
}

.lp-highlights__label {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    margin: 5px 0 0 0;
}

.lp-highlights__label strong {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 22px;
    line-height: 1.1;
    color: var(--lp-blue);
    font-variation-settings: 'wdth' 75;
    display: block;
}

.lp-highlights__sublabel {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #666;
    margin: 5px 0 0 0;
}

.lp-highlights__flags {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.lp-highlights__flags span {
    font-size: 24px;
}

/* Título siguiente sección */
.lp-benefits__next-title {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 540;
    font-size: 50px;
    line-height: 1;
    letter-spacing: -2.5px;
    text-align: center;
    color: var(--lp-darkblue);
    margin: 0 0 15px 0;
    padding: 0 24px;
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
}

.lp-benefits__next-title .text-magenta {
    color: var(--lp-magenta);
}

/* ==========================================================================
   STAT SECTION - Counters/Stats
   ========================================================================== */
.lp-stat {
    padding: 30px 0;
}

.lp-stat--green {
    background-color: var(--lp-green);
}

.lp-stat__inner {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.lp-stat__number {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 1000;
    font-size: 88px;
    line-height: 1;
    letter-spacing: -1.77px;
    color: var(--lp-darkblue);
}

.lp-stat__text {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 43px;
    line-height: 1;
    letter-spacing: -0.86px;
    color: var(--lp-darkblue);
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
}

/* ==========================================================================
   DOBLES GRADOS BANNER
   ========================================================================== */
.lp-doblesgrados {
    width: 100%;
    line-height: 0;
}

.lp-doblesgrados__image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   LOGOS CAROUSEL
   ========================================================================== */
.lp-logos {
    background-color: var(--lp-blue);
    padding: 50px 0;
}

.lp-logos__carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-logos__item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 100px;
}

.lp-logos__item img {
    max-width: 100%;
    max-height: 62px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Hacer logos blancos si no lo son */
}

/* Slick overrides */
.lp-logos .slick-track {
    display: flex;
    align-items: center;
}

.lp-logos .slick-slide {
    height: auto;
}

/* ==========================================================================
   CHECKLIST SECTION - Lista internacional
   ========================================================================== */
.lp-checklist {
    background-color: var(--lp-darkblue);
    padding: 60px 0;
}

.lp-checklist__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-checklist__item {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: -0.6px;
    color: var(--lp-white);
    padding: 15px 0 15px 45px;
    position: relative;
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
}

.lp-checklist__item::before {
    content: '*';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 410;
    font-size: 50px;
    line-height: 1;
    color: inherit;
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
}

.lp-checklist__item--green {
    color: var(--lp-green);
}

/* ==========================================================================
   LEADERS SECTION - Somos la mejor universidad
   ========================================================================== */
.lp-leaders {
    background-color: var(--lp-white);
    overflow: hidden;
}

.lp-leaders__container {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.lp-leaders__content {
    flex: 0 0 44%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-leaders__title {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 57px;
    line-height: 0.9;
    letter-spacing: -1.14px;
    color: var(--lp-blue);
    margin: 0 0 40px 0;
    max-width: 440px;
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
}

.lp-leaders__stats {
    margin-bottom: 40px;
}

.lp-leaders__stat {
    margin-bottom: 25px;
}

.lp-leaders__stat-highlight {
    margin-bottom: 5px;
}

.lp-leaders__stat-highlight p {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: -0.6px;
    color: var(--lp-darkblue);
    margin: 0;
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
    background-color: var(--lp-green);
    padding: 2px 8px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.lp-leaders__stat-desc {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 410;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.42px;
    color: var(--lp-darkblue);
    margin: 0;
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
}

.lp-leaders__stat-desc strong {
    font-weight: 1000;
}

.lp-leaders__cta {
    margin-top: 20px;
}

.lp-leaders__image {
    flex: 0 0 56%;
    display: flex;
    align-items: center;
}

.lp-leaders__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==========================================================================
   EGRESADOS SECTION - Título personalizado para landing
   ========================================================================== */
/* Fix: Sobrescribir estilos de .highlight de landing-page.css */
.lp-egresados .leader-description .highlight {
    padding: 0;
    line-height: inherit;
    color: var(--lp-darkblue);
}

/* ==========================================================================
   CTA SECTION - Atrévete a vivir la experiencia UP
   ========================================================================== */
.lp-cta {
    background-color: #f3f3f3;
    padding: 70px 0;
}

.lp-cta__title {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 57px;
    line-height: 0.9;
    letter-spacing: -1.14px;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
}

.lp-cta__title span {
    display: block;
}

.lp-cta__title--dark {
    color: #071e47;
}

.lp-cta__title--magenta {
    color: var(--lp-magenta);
}

.lp-cta__title--blue {
    color: var(--lp-blue);
}

.lp-cta__action {
    margin-top: 20px;
}

.lp-cta__btn {
    display: inline-block;
    padding: 14px 50px;
    background-color: var(--lp-blue);
    border: none;
    border-radius: 22px;
    color: var(--lp-white);
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 590;
    font-size: 30px;
    line-height: 1.25;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-cta__btn:hover {
    background-color: #0050cc;
    color: var(--lp-white);
    text-decoration: none;
    transform: translateY(-2px);
}

.lp-cta__nota {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--lp-blue);
    margin: 20px 0 0 0;
    text-align: left;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.lp-footer {
    margin-top: 0;
}

.lp-footer__stripes {
    display: flex;
    flex-direction: column;
}

.lp-footer__stripe {
    height: 14px;
    width: 100%;
}

.lp-footer__stripe--blue {
    background-color: var(--lp-blue);
}

.lp-footer__stripe--green {
    background-color: var(--lp-green);
}

.lp-footer__stripe--magenta {
    background-color: var(--lp-magenta);
}

.lp-footer__content {
    background-color: var(--lp-darkblue);
    padding: 40px 0;
}

.lp-footer__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.lp-footer__logo img {
    height: 50px;
    width: auto;
}

.lp-footer__info {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--lp-white);
}

.lp-footer__info p {
    margin: 0;
}

.lp-footer__info a {
    color: var(--lp-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lp-footer__info a:hover {
    color: var(--lp-green);
}

.lp-footer__bottom {
    background-color: #0d1c39;
    padding: 15px 0;
}

.lp-footer__copyright {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 590;
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--lp-white);
    margin: 0;
}

.lp-egresados__title {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 870;
    font-size: 40px;
    line-height: 0.875; /* 35px / 40px */
    letter-spacing: -0.02em;
    color: #071e47;
    text-transform: uppercase;
    margin: 0;
    max-width: 696px;
    font-stretch: 60%;
    font-variation-settings: 'wdth' 60;
}

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

/* Tablet */
@media (max-width: 1200px) {
    .lp-hero__content {
        gap: 40px;
    }

    .lp-hero__text {
        padding-top: 60px;
    }

    .lp-hero__title {
        font-size: 60px;
    }

    .lp-hero__form {
        width: 360px;
    }
}

@media (max-width: 992px) {
    .lp-hero__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        padding-top: 40px;
    }

    .lp-hero__text {
        padding-top: 20px;
        max-width: 100%;
    }

    .lp-hero__title {
        font-size: 50px;
    }

    .lp-hero__subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-hero__video-cta {
        justify-content: center;
    }

    .lp-hero__form {
        width: 100%;
        max-width: 450px;
    }

    /* Benefits responsive - Tablet */
    .lp-benefits__title {
        font-size: 40px;
    }

    .lp-benefits__item-header {
        padding: 22px 1.5rem;
    }

    .lp-benefits__text {
        font-size: 24px;
    }

    .lp-benefits__number {
        font-size: 32px;
    }

    .lp-benefits__btn {
        font-size: 24px;
        padding: 12px 40px;
    }

    .lp-benefits__next-title {
        font-size: 40px;
    }

    /* Stat responsive - Tablet */
    .lp-stat__number {
        font-size: 70px;
    }

    .lp-stat__text {
        font-size: 34px;
    }

    /* Checklist responsive - Tablet */
    .lp-checklist__item {
        font-size: 24px;
        padding-left: 40px;
    }

    .lp-checklist__item::before {
        font-size: 40px;
    }

    /* CTA responsive - Tablet */
    .lp-cta__title {
        font-size: 45px;
    }

    .lp-cta__btn {
        font-size: 24px;
        padding: 12px 40px;
    }

    /* Egresados title responsive - Tablet */
    .lp-egresados__title {
        font-size: 32px;
    }

    /* Leaders responsive - Tablet */
    .lp-leaders__container {
        gap: 30px;
    }

    .lp-leaders__content {
        padding: 50px 0;
    }

    .lp-leaders__title {
        font-size: 45px;
        margin-bottom: 30px;
    }

    .lp-leaders__stat-highlight p {
        font-size: 24px;
    }

    .lp-leaders__stat-desc {
        font-size: 18px;
    }

}

/* Mobile */
@media (max-width: 768px) {
    .lp-hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .lp-hero__background {
        /* En móvil, el fondo solo cubre la parte del hero, no el formulario */
        height: auto;
        min-height: 500px;
    }

    .lp-hero__container {
        min-height: auto;
    }

    .lp-hero__logo {
        padding: 20px 0;
        text-align: left;
    }

    .lp-hero__logo img {
        height: 55px;
    }

    /* En móvil, ajustar posición de imagen para mostrar el rostro */
    .lp-hero__image {
        object-position: 65% top;
    }

    .lp-hero__content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-top: 60px;
        padding-bottom: 40px;
        gap: 0;
    }

    .lp-hero__text {
        padding-top: 0;
        text-align: left;
        margin-bottom: 30px;
    }

    .lp-hero__title {
        font-size: 42px;
        margin-bottom: 20px;
        line-height: 0.95;
    }

    .lp-hero__subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        max-width: 300px;
        margin-left: 0;
        margin-right: 0;
    }

    /* Video CTA horizontal en móvil (como en Figma) */
    .lp-hero__video-cta {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        justify-content: flex-start;
    }

    .lp-hero__play-icon {
        width: 50px;
        height: 50px;
    }

    .lp-hero__play-icon svg {
        width: 50px;
        height: 50px;
    }

    .lp-hero__video-btn {
        font-size: 16px;
        padding: 10px 25px;
        border-radius: 25px;
    }

    /* Contenedor del formulario con fondo oscuro en móvil */
    .lp-hero__content {
        position: relative;
    }

    /* Fondo oscuro exterior para el formulario en móvil */
    .lp-hero__content::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: calc(100% - 400px); /* Cubre desde debajo del hero text */
        background-color: #071e47;
        z-index: 0;
        pointer-events: none;
    }

    /* Formulario: sección separada en móvil */
    .lp-hero__form {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        padding: 22px 20px 30px;
        background-color: var(--lp-blue); /* Mantener azul */
    }

    .lp-hero__form-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .lp-hero__form-terms {
        font-size: 14px;
    }

    /* Benefits responsive - Mobile */
    .lp-benefits {
        padding: 40px 0 40px;
    }

    .lp-benefits__title {
        font-size: 40px;
        line-height: 0.75;
        letter-spacing: -2px;
        margin-bottom: 25px;
    }

    .lp-benefits__item-header {
        padding: 15px 1rem;
        gap: 10px;
    }

    .lp-benefits__number {
        font-size: 24px;
        min-width: 35px;
    }

    .lp-benefits__text {
        font-size: 16px;
        line-height: 1.1;
    }

    .lp-benefits__btn {
        font-size: 20px;
        padding: 12px 35px;
        width: 100%;
        max-width: 300px;
    }

    .lp-benefits__next-title {
        font-size: 40px;
        line-height: 0.75;
        letter-spacing: -2px;
        margin-top: 0;
    }

    /* Highlights responsive - Mobile */
    .lp-highlights {
        padding: 30px 0;
    }

    .lp-highlights__grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .lp-highlights__item {
        flex: 0 0 calc(50% - 15px);
        padding: 15px 10px;
    }

    .lp-highlights__divider {
        display: none;
    }

    .lp-highlights__text {
        font-size: 18px;
    }

    .lp-highlights__number {
        font-size: 40px;
    }

    .lp-highlights__label {
        font-size: 14px;
    }

    .lp-highlights__label strong {
        font-size: 18px;
    }

    .lp-highlights__sublabel {
        font-size: 14px;
    }

    .lp-highlights__flags span {
        font-size: 20px;
    }

    /* Stat responsive - Mobile */
    .lp-stat {
        padding: 35px 0;
    }

    .lp-stat__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .lp-stat__number {
        font-size: 88px;
        letter-spacing: -1.77px;
    }

    .lp-stat__text {
        font-size: 39px;
        line-height: 0.85;
        letter-spacing: -0.78px;
        max-width: 332px;
    }

    /* Logos responsive - Mobile */
    .lp-logos {
        padding: 30px 0;
    }

    .lp-logos__item {
        padding: 0 15px;
        height: 80px;
    }

    .lp-logos__item img {
        max-height: 60px;
    }

    /* Checklist responsive - Mobile */
    .lp-checklist {
        padding: 40px 0;
    }

    .lp-checklist__item {
        font-size: 25px;
        line-height: 0.95;
        letter-spacing: -0.5px;
        padding: 12px 0 12px 38px;
    }

    .lp-checklist__item::before {
        font-size: 38px;
    }

    /* CTA responsive - Mobile */
    .lp-cta {
        padding: 50px 0;
        text-align: center;
    }

    .lp-cta__title {
        font-size: 32px;
    }

    .lp-cta__btn {
        font-size: 18px;
        padding: 12px 30px;
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* Egresados title responsive - Mobile */
    .lp-egresados__title {
        font-size: 26px;
        max-width: 100%;
    }

    /* Leaders responsive - Mobile */
    .lp-leaders__container {
        flex-direction: column-reverse;
        gap: 0;
    }

    .lp-leaders__content {
        padding: 40px 0;
    }

    .lp-leaders__title {
        font-size: 52px;
        line-height: 0.89;
        letter-spacing: -1.04px;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .lp-leaders__stat {
        margin-bottom: 20px;
    }

    .lp-leaders__stat-highlight p {
        font-size: 25px;
        line-height: 0.95;
        letter-spacing: -0.5px;
    }

    .lp-leaders__stat-desc {
        font-size: 18px;
        line-height: 0.95;
        letter-spacing: -0.36px;
    }

    .lp-leaders__cta {
        text-align: center;
    }

    .lp-leaders__cta .lp-benefits__btn {
        width: 100%;
        max-width: 300px;
    }

    .lp-leaders__image {
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
    }

    /* Footer responsive - Mobile */
    .lp-footer__content {
        padding: 30px 0;
    }

    .lp-footer__grid {
        align-items: flex-start;
        gap: 20px;
    }

    .lp-footer__logo img {
        height: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .lp-hero__logo img {
        height: 45px;
    }

    .lp-hero__content {
        padding-top: 40px;
    }

    .lp-hero__title {
        font-size: 36px;
    }

    .lp-hero__subtitle {
        font-size: 15px;
        max-width: 260px;
    }

    .lp-hero__play-icon {
        width: 45px;
        height: 45px;
    }

    .lp-hero__play-icon svg {
        width: 45px;
        height: 45px;
    }

    .lp-hero__video-btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .lp-hero__form {
        padding: 20px 16px 28px;
    }

    /* Benefits responsive - Small Mobile */
    .lp-benefits__title {
        font-size: 32px;
    }

    .lp-benefits__item-header {
        padding: 12px 1rem;
    }

    .lp-benefits__number {
        font-size: 20px;
        min-width: 30px;
    }

    .lp-benefits__text {
        font-size: 14px;
    }

    .lp-benefits__btn {
        font-size: 16px;
        padding: 10px 25px;
    }

    .lp-benefits__next-title {
        font-size: 32px;
        margin-top: 0;
    }

    /* Stat responsive - Small Mobile */
    .lp-stat__number {
        font-size: 65px;
    }

    .lp-stat__text {
        font-size: 28px;
        max-width: 280px;
    }

    /* Logos responsive - Small Mobile */
    .lp-logos__item img {
        max-height: 50px;
    }

    /* Checklist responsive - Small Mobile */
    .lp-checklist__item {
        font-size: 20px;
        padding-left: 32px;
    }

    .lp-checklist__item::before {
        font-size: 30px;
    }

    /* Leaders responsive - Small Mobile */
    .lp-leaders__content {
        padding: 30px 0;
    }

    .lp-leaders__title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .lp-leaders__stat-highlight p {
        font-size: 20px;
    }

    .lp-leaders__stat-desc {
        font-size: 15px;
    }

    .lp-leaders__image {
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }
}
#row-r1768332122119, #row-r1651085849767{
    display: none !important;
}