@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Manrope:wght@400;500;700;800&family=Sora:wght@600;700;800&display=swap');

/* Psicovivir Internacional - Estilos Institucionales
    Paleta: #6B529A (Morado), #FAF9F6 (Crema)
*/

:root {
    --purple: #6b5878;
    --purple_2: #7c6d8e;
    --purple_btn_1: #726389;
    --purple_btn_2: #9a9fb3;
    --purple_back_1: #726389;
    --purple-light: #8C77B3;
    --purple-light_2: #99758f;
    --purple-light_btn_1: #99758f;
    --cream: #FAF9F6;
    --white: #FFFFFF;
    --dark: #2D2342;
    --text: #4A4A4A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    background-color: var(--cream);
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

main {
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

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

/* NAV STYLES */
#main-nav {
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 30px; /* Reducido para acercar el logo al margen izquierdo */
    display: flex;
    justify-content: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

#main-nav.nav-solid {
    background: rgba(250, 249, 246, 0.40);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(88, 61, 123, 0.12);
    box-shadow: 0 8px 24px rgba(30, 19, 47, 0.08);
    padding: 12px 30px;
}

#main-nav .nav-container {
    width: 100%;
    max-width: 100%; 
    padding-left: 5vh;
    padding-right: 2vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

#main-nav.navbar-scrolled {
    background: var(--white);
    padding: 12px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

#main-nav.nav-solid.navbar-scrolled {
    background: rgba(250, 249, 246, 0.95);
    padding: 12px 30px;
    box-shadow: 0 10px 26px rgba(30, 19, 47, 0.1);
}

.nav-links { 
	display: flex; 
	list-style: none; 
	gap: clamp(10px, 1.2vw, 20px);
    align-items: center;
    margin-left: auto;
    margin-right: 1vh;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-outline {
    border: 2px solid #6e4d98;
    color: #6e4d98;
    padding: 9px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(13px, 0.95vw, 17px);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-nav-outline:hover {
    background: rgba(110, 77, 152, 0.1);
    transform: translateY(-2px);
}

/* Estilo para el logo para asegurar separación máxima del menú */
.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: auto;
    max-width: clamp(160px, 15vw, 220px);
}

.nav-mobile-only {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

#main-nav.navbar-scrolled .mobile-menu-toggle {
    color: var(--text);
}

.nav-links a { 
	text-decoration: none; 
    color: var(--dark); 
    font-weight: 700; 
	font-size: clamp(16px, 1vw, 18px);
    white-space: nowrap;
}

/* DROPDOWN STYLES */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.8em;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.95rem !important;
    color: var(--text) !important;
    font-weight: 500 !important;
    transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
    background: rgba(110, 77, 152, 0.05);
    color: #6e4d98 !important;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

#main-nav.navbar-scrolled .nav-links a { color: var(--dark); }

.btn-nav {
    background: linear-gradient(90deg, #6e4d98 0%, #7f5ba9 100%);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(13px, 0.95vw, 17px);
    box-shadow: 0 8px 20px rgba(83, 57, 117, 0.25);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

/* HERO SECTION */
.hero {
    width: 100%;
    height: 100vh;
    margin: 0 !important;
    padding: 140px 10% 0; /* Padding superior para bajar del nav */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(58, 48, 77, 0.25);
    z-index: 1;
}

.hero h1 { 
    position: relative;
    z-index: 2;
    font-family: 'Manrope', sans-serif; 
    font-size: 3rem; 
    color: white; 
    font-weight: 600;
    padding-left: 8vw; /* Aire lateral en versiones mayores a móvil */
}
.hero-content { 
    position: relative;
    z-index: 2;
    width: 100%; /* Ancho completo */
    max-width: 1400px; 
    text-align: left; /* Textos a la izquierda */
    margin-bottom: 100px; /* Espacio para el cuadro de abajo */
}

.hero-content p { 
	font-size: 1.5rem; 
	font-weight: 400;
	margin-bottom: 35px; 
	color: white; 
	width: 100%; 
    max-width: 1400px;
    padding-left: 8vw; /* Aire lateral en versiones mayores a móvil */
}

/* HERO MODERN HOME */
.hero.hero-modern {
    min-height: 0;
    height: auto;
    padding: 110px 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 85% 15%, #e8deef 0%, #f7f4fb 38%, #ece6f3 100%);
}

.hero.hero-modern::before {
    display: none;
}

.hero-modern-shell {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: 0;
    align-items: center;
}

.hero-modern-copy {
    background: transparent;
    border-radius: 0;
    padding: 38px 1vh 38px clamp(18vh, 3vw, 48px);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    margin: 0;
}

.hero-modern-kicker {
    display: inline-flex;
    align-self: flex-start;
    background: linear-gradient(90deg, #35125f 0%, #4c2a78 100%);
    color: #ffffff;
    padding: 11px 30px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    font-weight: 800;
    margin-bottom: 24px;
    font-family: 'Sora', 'Manrope', sans-serif;
    box-shadow: 0 8px 18px rgba(53, 18, 95, 0.22);
}

.hero-modern-copy h1 {
    font-size: clamp(2.15rem, 4vw, 4.05rem);
    line-height: 1.1;
    color: #4a2f71;
    margin: 0 0 12px;
    padding-left: 0;
    font-weight: 800;
    font-family: 'Sora', 'Manrope', sans-serif;
    max-width: 11ch;
}

.hero-modern-title-accent {
    color: #4a2f71;
    font-family: 'Caveat', cursive;
    font-style: italic;
    font-weight: 800;
    font-size: 1.26em;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    padding-bottom: 0.08em;
    letter-spacing: 0.01em;
    text-shadow: 0.5px 0 0 rgba(79, 47, 126, 0.45), -0.5px 0 0 rgba(79, 47, 126, 0.35);
}

/* Efecto de escritura letra por letra */
.typing-phrase span {
    opacity: 0;
    display: inline-block;
    transform: translateX(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.typing-phrase span.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-modern-lead {
    font-size: clamp(1.25rem, 1.9vw, 1.8rem);
    color: #6b4a8f;
    margin: 0 0 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-modern-highlight {
    font-size: clamp(1.3rem, 2.05vw, 2rem);
    line-height: 1.2;
    color: #4f356f;
    font-weight: 700;
    max-width: 680px;
    margin-bottom: 30px;
}

.hero-modern-highlight-accent {
    position: relative;
    display: inline-block;
    color: #4f2f7b;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-weight: 800;
    padding-inline: 6px;
}

.hero-modern-highlight-accent::after {
    content: '';
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: -2px;
    height: 8px;
    border-radius: 999px;
    background: rgba(146, 112, 184, 0.28);
    z-index: -1;
}

.hero-modern-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
    width: 100%;
}

.hero-modern-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 28px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.hero-modern-btn-primary {
    background: linear-gradient(90deg, #6e4d98 0%, #7f5ba9 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(83, 57, 117, 0.25);
}

.hero-modern-btn-secondary {
    background: transparent;
    color: #5a3b84;
    border: 2px solid rgba(90, 59, 132, 0.35);
}

.hero-modern-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.hero-modern-media {
    position: relative;
    border-radius: 34px 0 0 34px;
    overflow: hidden;
    min-height: 0;
    box-shadow: none;
}

.hero-modern-media img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
}

.hero-modern-media-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(71, 39, 102, 0.35) 10%, rgba(128, 86, 164, 0.18) 48%, rgba(247, 241, 255, 0.08) 100%);
    pointer-events: none;
    display: none;
}

/* HERO KPI STRIP */
.hero-kpi-strip {
    background: #361857;
    color: #f4f0ff;
    width: 100%;
    padding: 18px 10px;
}

.hero-kpi-grid {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.hero-kpi-item {
    text-align: center;
    padding: 4px 10px;
}

.hero-kpi-value {
    color: #ffffff;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2rem, 2.6vw, 2.4rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 8px;
}

.hero-kpi-label {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1200px) {
    .hero.hero-modern {
        padding: 106px 0 24px;
    }

    .hero-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 12px;
    }
}

@media (max-width: 992px) {
    .hero.hero-modern {
        padding: 100px 0 18px;
    }

    .hero-modern-shell {
        grid-template-columns: 1fr;
    }

    .hero-modern-copy {
        border-radius: 0;
        padding: 30px 24px;
        margin: 0 16px 14px;
    }

    .hero-modern-kicker {
        font-size: 0.78rem;
        margin-bottom: 20px;
    }

    .hero-modern-copy h1 {
        max-width: 100%;
    }

    .hero-modern-media {
        min-height: 0;
        border-radius: 28px 0 0 28px;
    }
}

@media (max-width: 576px) {
    .hero.hero-modern {
        padding: 96px 0 12px;
    }

    .hero-modern-copy {
        border-radius: 0;
        padding: 24px 18px;
        margin: 0 12px 10px;
    }

    .hero-modern-actions {
        flex-direction: column;
    }

    .hero-modern-highlight {
        font-size: 1.15rem;
        max-width: 100%;
        line-height: clamp(1.3, 1.4, 1.5);
    }

    .hero-modern-btn {
        width: 100%;
        font-size: 0.96rem;
    }

    .hero-modern-media {
        min-height: 0;
        border-radius: 0;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .hero-modern-media img {
        width: 100%;
        border-radius: 0;
    }

    .hero-kpi-strip {
        padding: 20px 12px;
    }

    .hero-kpi-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-kpi-label {
        font-size: 0.98rem;
    }
}

/* CONTIGO+ SUBSCRIPTION PAGE */
.plus-page {
    background: radial-gradient(circle at 85% 0%, #ece2f5 0%, #f7f4fb 40%, #f2ecf8 100%);
}

.plus-hero-home {
    padding-top: 96px;
}

.plus-hero-home .comunidad-feature-media img {
    min-height: calc(100vh - 96px);
}

.plus-hero {
    padding-bottom: 36px;
}

.plus-hero-copy {
    max-width: 760px;
}

.plus-hero-copy h1 {
    max-width: 12ch;
}

.plus-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.plus-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(106, 77, 139, 0.1);
    color: #5f3f86;
    font-weight: 700;
    font-size: 0.9rem;
}

.plus-allinone {
    padding: 0;
    background-color: #faf9f6;
}

.plus-allinone-copy {
    padding: clamp(40px, 6vw, 100px) clamp(40px, 5vw, 80px);
    background: #412e61; /* Color morado sólido como en la imagen */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plus-allinone-copy .plus-section-title {
    text-align: left !important;
    color: #ffffff;
    margin-bottom: 24px;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.plus-allinone-copy .plus-section-subtitle {
    text-align: left !important;
    color: rgba(255, 255, 255, 0.95);
    margin-left: 0;
    max-width: 600px;
    font-size: 1.35rem;
    line-height: 1.5;
    margin-bottom: 48px;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

.plus-allinone-copy .plus-section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: linear-gradient(to bottom, #64c8ea, #8c5cea);
    border-radius: 2px;
}

.plus-allinone .plus-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin: 0;
    max-width: none;
    padding: 0;
}

.plus-allinone .plus-chip-list span {
    display: inline-block;
    background: #ffffff;
    color: #412e61;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: default;
    border: 2px solid transparent;
    white-space: nowrap; /* Evita que el texto de la chip se rompa */
}

.plus-allinone .plus-chip-list span:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: #64c8ea;
    color: #8c5cea;
    box-shadow: 0 8px 20px rgba(140, 92, 234, 0.15);
}

@media (max-width: 768px) {
    .plus-allinone-copy .plus-section-title,
    .plus-allinone-copy .plus-section-subtitle {
        text-align: center;
    }

    .plus-allinone .plus-chip-list {
        gap: 8px;
        justify-content: center; /* Centrado para móvil */
        margin-top: 10px;
    }
    .plus-allinone .plus-chip-list span {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

.plus-chip-list span {
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(112, 79, 154, 0.25);
    color: #5b3b85;
    font-weight: 700;
    padding: 10px 16px;
}

.plus-proof-strip {
    background: linear-gradient(90deg, #64c8ea 0%, #8c5cea 100%);
    color: #ffffff;
    padding: 30px 16px;
    box-shadow: 0 10px 30px rgba(100, 200, 234, 0.2);
    position: relative;
    z-index: 2;
}

.plus-proof-grid {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.plus-proof-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.plus-proof-item:last-child {
    border-right: none;
}

.plus-proof-value {
    margin: 0 0 4px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    color: #ffffff;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-weight: 800;
}

.plus-proof-label {
    margin: 0;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.plus-map-section {
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.plus-map-media-custom {
    background: #412e61;
    overflow: hidden;
}

.plus-map-media-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plus-map-copy-custom {
    background: #412e61; /* Fondo morado para que coincida con la imagen de error */
    padding: clamp(40px, 8vw, 120px) clamp(20px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plus-map-title-main {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    color: #ffffff; /* Letras blancas para contraste */
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    text-align: left;
}

.plus-map-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9); /* Texto claro con opacidad */
    max-width: 650px;
    font-weight: 300;
    text-align: left;
}

.plus-map-lead strong {
    color: #ffffff;
    font-weight: 700;
}

.plus-map-copy-custom .hero-modern-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #64c8ea 0%, #8c5cea 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(140, 92, 234, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
    align-self: flex-start;
}

.plus-map-copy-custom .hero-modern-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(140, 92, 234, 0.5);
    background: linear-gradient(90deg, #7ad5f2 0%, #9d72f0 100%);
    color: #ffffff;
    text-decoration: none !important;
}

.plus-map-media img {
    width: 100%;
    display: block;
}

.plus-divider-banner {
    background: linear-gradient(90deg, #64c8ea 0%, #8c5cea 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plus-divider-text {
    color: #ffffff;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .plus-divider-banner {
        padding: 40px 20px;
    }
}

.plus-testimonials {
    background: linear-gradient(135deg, #64c8ea 0%, #8c5cea 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.plus-testimonials .plus-section-title {
    color: #ffffff;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

/* Contenedor infinito */
.plus-testimonials-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scroll-left 40s linear infinite;
    padding: 20px 0;
}

.plus-testimonials-track:hover {
    animation-play-state: paused;
}

.plus-testimonial-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 30px;
    text-align: left;
    width: 380px; /* Ancho fijo para consistencia */
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.plus-testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #4c316f;
    font-style: italic;
    margin-bottom: 20px;
}

.plus-testimonial-card span {
    display: block;
    text-align: right;
    font-weight: 800;
    color: #000000;
    font-size: 0.95rem;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* Quitamos los dots ya que es scroll continuo e infinito */
.plus-testimonial-dots {
    display: none;
}

.plus-ecosystem {
    padding: 0;
    background: transparent;
    margin: 0;
}

.plus-ecosystem .container-fluid {
    padding: 0;
}

.plus-ecosystem.section-padding {
    padding: 0 !important;
}

.plus-ecosystem-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.plus-ecosystem-split {
    min-height: 0;
}

.plus-ecosystem-media {
    min-width: 0;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    overflow: hidden;
    background: #000000;
    box-shadow: none;
}

.plus-video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: #000000;
}

.plus-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.plus-ecosystem-copy {
    background: #412e61;
    border: 0;
    border-radius: 0;
    padding: clamp(40px, 8vw, 80px) clamp(30px, 6vw, 60px);
    box-shadow: none;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

/* Decoración sutil de fondo para el contenedor derecho */
.plus-ecosystem-copy::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 200, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.plus-ecosystem-copy .plus-section-title {
    text-align: left;
    margin: 0;
    max-width: 15ch;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.1;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.plus-ecosystem-lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1.1rem, 1.2vw, 1.35rem);
    line-height: 1.6;
    max-width: 48ch;
    font-weight: 300;
}

.plus-ecosystem-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
    width: 100%;
    align-items: flex-start;
}

.plus-step-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px 16px 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    width: 100%; /* Las tarjetas llenan el ancho del contenedor de puntos */
    max-width: 580px; /* Ancho fijo máximo para que todas midan lo mismo */
}

.plus-step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(100, 200, 234, 0.4);
}

.plus-step-card span {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #64c8ea 0%, #8c5cea 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.plus-step-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plus-step-card h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.plus-step-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 400;
}

.plus-section-title {
    text-align: center;
    color: #4b2f73;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1.1;
    margin: 0 0 12px;
}

.plus-section-subtitle {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 36px;
    color: #6f4f92;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.plus-includes {
    padding-top: clamp(46px, 6vw, 84px);
    background-color: #f8f6f2; /* Color crema suave */
}

.plus-includes-showcase {
    display: grid;
    gap: 24px;
}

.plus-include-hero-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: linear-gradient(120deg, #32204f 0%, #4e2f7c 48%, #67c2e8 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 44px rgba(48, 30, 79, 0.28);
}

.plus-include-hero-media {
    min-height: 280px;
}

.plus-include-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plus-include-hero-content {
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plus-include-eyebrow {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 12px;
    margin-bottom: 14px;
}

.plus-include-hero-content h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.15;
}

.plus-include-hero-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.02rem;
    line-height: 1.6;
}

.plus-includes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.plus-include-card {
    display: grid;
    grid-template-columns: minmax(190px, 42%) 1fr;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(126, 92, 168, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(77, 44, 114, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
}

.plus-include-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 36px rgba(77, 44, 114, 0.18);
}

.plus-include-thumb {
    min-height: 250px;
}

.plus-include-thumb.plus-include-thumb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #6c4a9b 0%, #64c8ea 100%);
}

.plus-include-thumb.plus-include-thumb-icon i {
    font-size: clamp(3rem, 5vw, 4.4rem);
    color: #ffffff;
    filter: drop-shadow(0 10px 22px rgba(39, 23, 63, 0.32));
}

.plus-include-card:nth-child(2) .plus-include-thumb.plus-include-thumb-icon {
    background: linear-gradient(140deg, #4b2f73 0%, #8c5cea 100%);
}

.plus-include-card:nth-child(3) .plus-include-thumb.plus-include-thumb-icon {
    background: linear-gradient(140deg, #2f356f 0%, #5ebddf 100%);
}

.plus-include-card:nth-child(4) .plus-include-thumb.plus-include-thumb-icon {
    background: linear-gradient(140deg, #51346f 0%, #6b95f2 100%);
}

.plus-include-content {
    padding: 26px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plus-include-card h3 {
    margin: 0 0 12px;
    color: #41265f;
    font-size: clamp(1.2rem, 1.4vw, 1.45rem);
    line-height: 1.28;
}

.plus-include-card p {
    margin: 0;
    color: #4f4365;
    line-height: 1.72;
    font-size: 1rem;
}

@media (max-width: 1100px) {
    .plus-include-hero-card {
        grid-template-columns: 1fr;
    }

    .plus-include-hero-media {
        min-height: 240px;
    }
}

@media (max-width: 900px) {
    .plus-includes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .plus-include-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .plus-include-thumb {
        min-height: 120px;
        max-height: 140px;
    }

    .plus-include-thumb.plus-include-thumb-icon i {
        font-size: 2.2rem;
    }

    .plus-include-content {
        padding: 18px 18px 20px;
        text-align: center;
    }

    .plus-include-card h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .plus-include-card p {
        font-size: 0.95rem;
        line-height: 1.55;
    }
}

.plus-pricing {
    background: #fdfcfa;
    padding: clamp(60px, 10vw, 100px) 0;
}

.plus-pricing-grid {
    max-width: 1200px; /* Aumentado para 3 columnas */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas en una linea */
    gap: 25px;
    align-items: stretch;
}

.plus-price-card {
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(65, 46, 97, 0.1); /* Borde más sutil por defecto */
    padding: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
}

/* Plan Destacado Principal (Comunidad Psicovivir) */
.plus-price-card-deluxe {
    background: #412e61;
    border: none;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(65, 46, 97, 0.3);
    transform: scale(1.05); /* Ligeramente más grande */
    z-index: 2;
}

.plus-price-card-deluxe:hover {
    transform: scale(1.07) translateY(-5px);
}

.plus-price-card-deluxe .plus-plan-name,
.plus-price-card-deluxe .plus-plan-price,
.plus-price-card-deluxe .plus-plan-price span,
.plus-price-card-deluxe .plus-plan-intro,
.plus-price-card-deluxe .plus-plan-note,
.plus-price-card-deluxe .plus-plan-features li {
    color: #ffffff !important;
}

.plus-price-card-deluxe .plus-plan-features li i {
    color: #64c8ea; /* Turquesa para destacar servicios deluxe */
}

.plus-price-card-deluxe .plus-plan-btn {
    background: linear-gradient(90deg, #5BB0D5 0%, #8E7BB3 100%);
    color: #ffffff;
    border: none;
}

.plus-price-card-deluxe .plus-plan-btn:hover {
    color: #ffffff;
    background: linear-gradient(90deg, #5BB0D5 0%, #8E7BB3 100%);
    transform: scale(1.08);
}

.plus-price-card-inner {
    padding: 35px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plus-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(65, 46, 97, 0.12);
    border-color: rgba(120, 92, 162, 0.25);
}

.plus-price-card-featured {
    background: #412e61;
    border: none;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(65, 46, 97, 0.25);
}

.plus-price-card-featured .plus-plan-name,
.plus-price-card-featured .plus-plan-price,
.plus-price-card-featured .plus-plan-price span,
.plus-price-card-featured .plus-plan-intro,
.plus-price-card-featured .plus-plan-note,
.plus-price-card-featured .plus-plan-features li {
    color: #ffffff !important;
}

.plus-price-card-featured .plus-plan-features li i {
    color: #64c8ea;
}

.plus-plan-badge {
    position: absolute;
    top: 25px;
    right: 30px;
    background: linear-gradient(90deg, #64c8ea 0%, #8c5cea 100%);
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plus-plan-header {
    margin-bottom: 25px;
}

.plus-plan-name {
    margin: 0 0 5px;
    color: #412e61;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.plus-plan-price {
    margin: 0;
    color: #412e61;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
}

.plus-plan-price span {
    font-size: 0.45em;
    color: #7b659b;
    font-weight: 500;
    margin-left: 2px;
}

.plus-plan-intro {
    font-size: 0.95rem;
    color: #6b5a8e;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 500;
}

.plus-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plus-plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #4f4365;
    font-weight: 500;
}

.plus-plan-features li i {
    color: #8c5cea;
    font-size: 0.9rem;
    width: 20px;
}

.plus-plan-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
    border-radius: 16px;
    padding: 16px 20px;
    background: #f4effc;
    color: #412e61;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plus-plan-btn:hover {
    background: #412e61;
    color: white;
}

.plus-plan-btn.featured {
    background: linear-gradient(90deg, #64c8ea 0%, #8c5cea 100%);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(100, 200, 234, 0.3);
}

.plus-plan-btn.featured:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(100, 200, 234, 0.4);
    filter: brightness(1.05);
}

.plus-plan-note {
    margin: 12px 0 0;
    font-size: 0.85rem;
    color: #7b659b;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 850px) {
    .plus-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .plus-price-card-featured {
        order: -1; /* Muestra el recomendado primero en móvil */
    }
}


.plus-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.plus-testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(125, 93, 169, 0.15);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 24px rgba(68, 43, 103, 0.08);
}

.plus-testimonial-card i {
    color: #7d59ab;
    margin-bottom: 10px;
}

.plus-testimonial-card p {
    color: #554b67;
    line-height: 1.6;
    margin: 0 0 12px;
}

.plus-testimonial-card span {
    color: #4e3576;
    font-weight: 700;
}

.plus-form-section {
    padding-top: 20px;
}

.plus-form-wrap {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(118, 87, 158, 0.2);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 16px 34px rgba(73, 48, 109, 0.1);
}

.plus-form-wrap h2 {
    margin: 0 0 18px;
    text-align: center;
    color: #472f6e;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.55rem, 2.8vw, 2.4rem);
}

.plus-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.plus-form-grid input,
.plus-form-grid select,
.plus-form-grid button {
    border-radius: 12px;
    border: 1px solid rgba(118, 87, 158, 0.25);
    padding: 12px 14px;
    font-size: 0.98rem;
    font-family: 'Manrope', sans-serif;
}

.plus-form-grid button {
    grid-column: 1 / -1;
    border: none;
    background: linear-gradient(90deg, #6e4d98 0%, #7f5ba9 100%);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.plus-cta-final {
    padding: 0;
    line-height: 0;
    border: none;
    background: transparent;
}

.plus-cta-wrap {
    background: #f8f6f2; /* Coincide con plus-includes */
    color: #412e61; /* Morado oscuro */
    border-radius: 0;
    text-align: center;
    padding: clamp(60px, 8vw, 90px) clamp(20px, 5vw, 40px);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.plus-cta-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.plus-cta-wrap h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #412e61; /* Morado oscuro */
}

.plus-cta-wrap h2 strong {
    display: inline;
    background: linear-gradient(90deg, #64c8ea 0%, #8c5cea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
}

.plus-cta-wrap p {
    margin: 0 auto 40px;
    max-width: 800px;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: #412e61; /* Morado oscuro */
    font-weight: 500;
}

.plus-cta-btn-final {
    display: inline-block;
    background: linear-gradient(135deg, #412e61 0%, #643fa3 100%);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(16px, 1.5vw, 20px);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(65, 46, 97, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.plus-cta-btn-final:hover {
    transform: translateY(-5px) scale(1.05);
    background: #ffffff;
    color: #412e61;
    border-color: #412e61;
    box-shadow: 0 15px 35px rgba(65, 46, 97, 0.4);
}

/* CIERRE DE COMPRA - CONTIGO+ */
.close-success-page {
    background: radial-gradient(circle at 10% 10%, rgba(139, 117, 179, 0.16), transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(91, 176, 213, 0.18), transparent 38%),
                #f8f6fb;
}

.close-success-hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.close-success-shell {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 32px;
    align-items: stretch;
}

.close-success-main-card,
.close-success-side-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(54, 34, 84, 0.12);
    border: 1px solid rgba(110, 77, 152, 0.14);
}

.close-success-main-card {
    padding: clamp(26px, 4vw, 44px);
}

.close-success-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 176, 213, 0.14);
    color: #3b2a63;
    border: 1px solid rgba(59, 42, 99, 0.15);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 700;
}

.close-success-pill i {
    color: #2aa56f;
}

.close-success-title {
    margin: 16px 0 12px;
    color: #2f1f4f;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.close-success-lead {
    color: #5a4b74;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.65;
    max-width: 62ch;
}

.close-success-summary {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.close-success-item {
    background: #f8f5ff;
    border: 1px solid rgba(82, 62, 124, 0.14);
    border-radius: 16px;
    padding: 14px 16px;
}

.close-success-label {
    margin: 0;
    font-size: 0.86rem;
    color: #6f618a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.close-success-value {
    margin: 4px 0 0;
    color: #2f1f4f;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 800;
    word-break: break-word;
}

.close-success-note {
    margin: 2px 0 0;
    color: #2d8f62;
    font-size: 0.9rem;
    font-weight: 600;
}

.close-success-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.close-success-btn {
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

.close-success-btn-primary {
    background: linear-gradient(135deg, #4b3274 0%, #6f48a5 100%);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(75, 50, 116, 0.25);
}

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

.close-success-btn-secondary {
    border-color: #d7cfee;
    color: #4e3a74;
    background: #ffffff;
}

.close-success-btn-secondary:hover {
    border-color: #8f78b7;
    color: #3f2d63;
}

.close-success-side-card {
    padding: clamp(22px, 3vw, 32px);
    background: linear-gradient(160deg, #311f51 0%, #4a2f75 55%, #5a3b8d 100%);
    color: #ffffff;
}

.close-success-side-title {
    margin: 0 0 16px;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.close-success-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.close-success-steps li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
}

.close-success-steps li span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #2d1b4b;
    background: #b7f5dd;
}

.close-success-steps li p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
}

.close-success-help-box {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.23);
    padding-top: 14px;
}

.close-success-help-box p {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.85);
}

/* FORMULARIO DE PAGO EXTERNO */
.external-payment-page {
    background: radial-gradient(circle at 12% 10%, rgba(139, 117, 179, 0.2), transparent 34%),
                radial-gradient(circle at 90% 18%, rgba(89, 170, 205, 0.18), transparent 40%),
                #f8f5fb;
}

.external-payment-hero.section-padding {
    min-height: calc(100vh - 110px);
    padding-top: clamp(120px, 10vh, 200px) !important;
    padding-bottom: clamp(56px, 8vh, 90px) !important;
}

.external-payment-shell {
    display: grid;
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
}

.external-payment-main-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(82, 62, 124, 0.12);
    box-shadow: 0 20px 44px rgba(58, 35, 92, 0.14);
}

.external-payment-main-card {
    padding: clamp(24px, 4vw, 42px);
}

.external-payment-title {
    margin-bottom: 8px;
}

.external-payment-lead {
    margin-bottom: 8px;
}

.external-payment-expire {
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(45, 143, 98, 0.1);
    border: 1px solid rgba(45, 143, 98, 0.2);
    padding: 8px 12px;
    border-radius: 10px;
}

.external-payment-form {
    display: grid;
    gap: 16px;
}

.external-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.external-payment-field {
    display: grid;
    gap: 6px;
}

.external-payment-field span {
    color: #4b3a68;
    font-weight: 700;
    font-size: 0.95rem;
}

.external-payment-field input,
.external-payment-field select {
    width: 100%;
    border: 1px solid #d7cfee;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.96rem;
    color: #2f1f4f;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.external-payment-field input:focus,
.external-payment-field select:focus {
    outline: none;
    border-color: #8f78b7;
    box-shadow: 0 0 0 4px rgba(143, 120, 183, 0.18);
}

.external-payment-field-full {
    grid-column: 1 / -1;
}

.external-payment-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    padding-top: 14px;
    padding-bottom: 14px;
}

@media (max-width: 992px) {
    .external-payment-shell {
        grid-template-columns: minmax(0, 760px);
    }
}

@media (max-width: 768px) {
    .external-payment-hero.section-padding {
        padding-top: 128px !important;
    }

    .external-payment-grid {
        grid-template-columns: 1fr;
    }

    .external-payment-main-card {
        border-radius: 20px;
    }
}

.close-success-help-box a {
    color: #8fe7ff;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .close-success-shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .close-success-summary {
        grid-template-columns: 1fr;
    }

    .close-success-actions {
        flex-direction: column;
    }

    .close-success-btn {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .plus-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plus-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .plus-includes-grid,
    .plus-pricing-grid {
        grid-template-columns: 1fr;
    }

    .plus-map-grid,
    .plus-ecosystem-grid,
    .plus-form-grid {
        grid-template-columns: 1fr;
    }

    .plus-price-card-featured {
        transform: none;
    }

    .plus-ecosystem-split {
        min-height: 0;
    }

    .plus-ecosystem-media {
        aspect-ratio: 16 / 9;
    }

    .plus-video-wrap {
        min-height: 0;
    }
}

@media (max-width: 576px) {
    .plus-hero-home .comunidad-feature-grid{
        margin-top: 8vh; 
    }

    .plus-hero-home h2 {
        font-size: clamp(2.2rem, 8vw, 3rem);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .plus-hero-home .comunidad-feature-copy p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .plus-hero-home .comunidad-feature-media img {
        min-height: 380px;
        object-fit: cover;
    }

    .plus-proof-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .plus-hero-badges {
        gap: 8px;
    }

    .plus-hero-badges span {
        width: 100%;
        justify-content: center;
    }

    .plus-price-card {
        padding: 24px 18px;
    }

    .plus-video-wrap {
        min-height: 0;
        border-radius: 0;
    }

    .plus-ecosystem-media {
        aspect-ratio: 16 / 9;
        min-height: auto;
    }

    .plus-ecosystem-copy {
        min-height: auto;
    }

    .plus-ecosystem-copy {
        padding: 18px 16px;
        border-radius: 0;
        gap: 12px;
    }

    .plus-ecosystem-copy .plus-section-title {
        max-width: none;
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }
}

/* HERO PSICOCONTIGO SPECIFIC */
.hero-psicocontigo {
    display: flex;
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(90deg, #4A3475 20%, #6B529A 40%, #8E7BB3 70%);
    overflow: hidden;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    color: white;
}

.hero-content-inner {
    max-width: 550px;
}

.hero-logo {
    max-width: 200px;
    margin-bottom: 60px;
}

.hero-psicocontigo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    padding-left: 0; /* Resetting padding from general hero if any */
}

.hero-psicocontigo p {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 40px;
    opacity: 0.9;
    padding-left: 0;
}

.btn-hero-white {
    background: white;
    color: var(--purple);
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-labels {
    margin-top: 60px;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.8;
}

.hero-right {
    flex: 1;
    position: relative;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .hero-psicocontigo {
        flex-direction: column;
    }
    .hero-right {
        height: 50vh;
    }
    .hero-psicocontigo h1 {
        font-size: 2.5rem;
    }
}

/* ASESORIA SECTION */
.asesoria-section {
    background-color: #F8F7F3; /* Crema suave según referencia */
    padding: 100px 0;
    text-align: center;
}

.asesoria-title {
    color: #2D1A4D; /* Morado muy oscuro */
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Manrope', sans-serif;
}

.asesoria-subtitle-italic {
    font-style: italic; /* Cambiado de itálica a normal según imagen */
    font-size: 1.3rem;
    color: #4A3475;
    margin-bottom: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.asesoria-subtitle-main {
    font-size: 1.8rem;
    color: #2D1A4D;
    margin-bottom: 80px;
    line-height: 1.3;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.asesoria-subtitle-main strong {
    font-weight: 800;
}

.asesoria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.asesoria-card {
    background: white;
    border-radius: 0; /* Cards cuadradas según imagen */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.asesoria-card-img {
    height: 300px;
    overflow: hidden;
}

.asesoria-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asesoria-card-content {
    padding: 50px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.asesoria-card-content h3 {
    color: #2D1A4D;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 35px;
    height: 100px; /* Altura fija para uniformidad */
    display: flex;
    align-items: flex-end; /* Alinea los títulos a la base para que el texto de abajo empiece igual */
    padding-bottom: 5px;
}

.asesoria-card-content p {
    color: #4A3475;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 60px;
    flex-grow: 1;
    opacity: 0.9;
}

.btn-asesoria {
    background: linear-gradient(90deg, #5BB0D5 0%, #8E7BB3 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px; /* Bordes ligeramente redondeados como en la imagen */
    display: inline-block;
    width: fit-content;
    align-self: center;
    transition: all 0.3s ease;
}

.btn-asesoria:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 123, 179, 0.4);
}

.btn-asesoria:hover {
    background-color: #989e7b;
    transform: translateY(-2px);
}

/* --- REGISTER & LOGIN FORMS (ESTILO 2026) --- */
.register-page {
    background-color: var(--cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Espacio para el nav */
    padding-bottom: 50px;
}

.auth-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.auth-container {
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 30px 100px rgba(107, 82, 154, 0.12);
    min-height: 800px;
}

.auth-visual {
    flex: 1.1;
    position: relative;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.auth-visual-content {
    position: relative;
    z-index: 2;
}

.auth-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.auth-visual h2 {
    font-family: 'Sora', sans-serif;
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-accent-auth {
    color: #ffd880; /* Dorado para contraste sobre morado */
    font-family: 'Caveat', cursive;
    display: block;
    font-size: 4rem;
}

.auth-visual p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
}

.auth-features {
    list-style: none;
    display: grid;
    gap: 20px;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.auth-features li i {
    background: #ffd880;
    color: var(--dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.auth-image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(88, 59, 125, 0.94), rgba(124, 73, 161, 0.8));
    z-index: 1;
}

.auth-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.auth-form-side {
    position: relative;
    flex: 0.9;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.auth-back-home {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 45px;
    height: 45px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.auth-back-home:hover {
    background: #000000;
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .auth-back-home {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.auth-form-header {
    margin-bottom: 2px;
    text-align: left;
}

.auth-mobile-logo {
    display: none;
    height: 50px;
    margin-bottom: 20px;
}

.auth-form-header h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1px;
}

.auth-form-header p {
    color: #666;
    font-size: 1rem;
}

.auth-form {
    display: grid;
    gap: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}

.form-group input, 
.form-group select {
    padding: 5px 20px;
    border: 2px solid #edebf2;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--dark);
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--purple-light);
    box-shadow: 0 0 0 4px rgba(107, 82, 154, 0.1);
}

.password-input-wrapper {
    position: relative;
    display: flex;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-auth-submit {
    background: linear-gradient(90deg, #5BB0D5 0%, #8E7BB3 100%);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    width: 100%;
}

.btn-auth-submit:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 35, 66, 0.2);
}

.auth-footer {
    text-align: center;
    margin-top: 15px;
}

.auth-footer a {
    color: #7f0797; /* Turquesa llamativo del degradado */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #7e4ce2; /* Cambia a morado al pasar el mouse */
    text-decoration: underline;
}

/* Estilos compactos para registro */
.auth-form-header-compact {
    margin-bottom: 20px;
}

.auth-form-header-compact h1 {
    font-family: 'Sora', sans-serif;
    color: var(--purple);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.auth-form-header-compact p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .register-page {
        padding: 0;
        display: block;
        min-height: 100vh;
        height: auto;
        background: var(--white);
        overflow: visible;
    }

    .auth-section {
        padding: 0;
        display: block;
        height: auto;
    }

    .auth-container {
        display: block;
        width: 100%;
        height: auto;
        max-height: none;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
        background: var(--white);
    }

    .auth-visual {
        display: none !important;
    }

    .auth-form-side {
        width: 100%;
        padding: 40px 25px 60px;
        display: block;
        height: auto;
        background: var(--white);
        box-sizing: border-box;
    }

    .auth-form {
        display: block;
        height: auto;
        width: 100%;
    }

    .auth-form .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .auth-form .form-group {
        margin-bottom: 5px;
        width: 100%;
    }

    .auth-form input, 
    .auth-form select {
        width: 100% !important;
        height: 50px;
        font-size: 1rem;
        padding: 12px 15px;
        box-sizing: border-box;
    }

    .btn-auth-submit {
        margin: 30px 0 25px 0;
        padding: 16px;
        font-size: 1.1rem;
        width: 100%;
        display: block;
        position: relative;
        z-index: 3;
    }

    .auth-footer {
        margin: 0;
        padding-bottom: 40px;
        text-align: center;
        background: #fff; /* Asegurar que no sea transparente */
        position: relative;
        z-index: 3;
    }

    /* Corrección para que el footer global no se amontone */
    .main-footer {
        padding: 60px 20px 30px;
        position: static;
        z-index: auto;
        margin-top: 0;
        clear: both;
        background: #31214a !important; /* Color sólido para el fondo del footer */
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-brand p {
        margin: 0 auto 20px;
    }

    /* Espaciado para instrucciones de contraseña en móvil */
    .password-instruction {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .password-requirements-compact {
        margin-bottom: 20px;
    }
}

.password-instruction {
    font-size: 0.85rem;
    color: #000000;
    font-weight: 600;
}

.privacy-notice {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
}

.privacy-notice a {
    color: #0044cc;
    text-decoration: underline;
}

.password-requirements-compact {
    margin-bottom: 5px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.requirements-grid .requirement {
    font-size: 0.82rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.requirements-grid .requirement i {
    font-size: 6px;
    opacity: 0.5;
}

.requirements-grid .requirement.valid {
    color: #2e7d32;
    font-weight: 500;
}

.requirements-grid .requirement.valid i {
    color: #4caf50;
    opacity: 1;
}

.auth-form .form-group {
    margin-bottom: 8px;
}

.auth-form .form-row {
    gap: 15px;
    margin-bottom: 0px;
}

.auth-form label {
    margin-bottom: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.auth-form input, 
.auth-form select {
    padding: 8px 12px;
    height: 40px;
    font-size: 0.9rem;
}

.register-page {
    min-height: 100vh;
    padding: 2vh 0;
    display: flex;
    align-items: center;
}

.auth-container {
    max-height: 98vh;
}

/* Password Validation Requirements Styles */
.password-requirements {
    margin-top: 15px;
    padding: 0 5px;
}

.password-requirements p {
    font-size: 0.95rem;
    color: #4A4A4A;
    margin-bottom: 12px;
    font-weight: 500;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement {
    font-size: 0.9rem;
    color: #D32F2F; /* Rojo suave para indicar que no se cumple aún */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.requirement i {
    font-size: 0.5rem;
    opacity: 0.7;
}

.requirement.valid {
    color: #2E7D32; /* Verde cuando se cumple */
}

.requirement.valid i {
    color: #2E7D32;
    opacity: 1;
}

/* Alert/Error styles for password matching */
.error-message {
    color: #D32F2F;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: fadeIn 0.3s ease;
}

.input-error {
    border-color: #D32F2F !important;
    background-color: rgba(211, 47, 47, 0.02);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE AUTH */
@media (max-width: 1024px) {
    .auth-form-side {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
        border-radius: 0;
        min-height: auto;
    }
    
    .auth-visual {
        padding: 80px 40px;
        flex: none;
    }

    .auth-visual h2 {
        font-size: 2.5rem;
    }

    .text-accent-auth {
        font-size: 3rem;
    }

    .auth-form-side {
        padding: 60px 40px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .auth-visual {
        display: none;
    }

    .auth-mobile-logo {
        display: block;
    }

    .register-page {
        padding-top: 80px;
    }

    .auth-form-side {
        padding: 40px 25px;
    }
    
    .auth-form-header h1 {
        font-size: 1.8rem;
    }
}


/* HERO METODO - Rediseño basado en imagen */
.hero-metodo {
    width: 100% !important;
    min-height: 50vh !important; /* Forzamos una altura mayor para asegurar el centrado */
    background: linear-gradient(135deg, #4A2F71 0%, #6B529A 50%, #8C77B3 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 120px 20px !important; /* Aumentamos significativamente el padding para empujar el texto al centro */
    position: relative !important;
    overflow: hidden !important;
    margin-top: 0 !important;
}

.hero-metodo .hero-content {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding-bottom: 30px !important; /* Espacio extra abajo para que no se pegue al fondo de la sección */
    z-index: 2 !important;
}

.hero-metodo .hero-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem) !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
    line-height: 1.2 !important;
    margin-bottom: 2vh !important; /* Eliminamos el margen para que el subtítulo suba */
    padding-left: 0 !important;
    letter-spacing: -0.01em !important;
}

.hero-metodo .hero-subtitle {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(2.2rem, 6.5vw, 4.0rem) !important; /* Aumentado para que destaque como en la imagen */
    font-weight: 600 !important;
    color: #FFFFFF !important; /* Blanco puro como en la imagen */
    margin: -0.2em 0 0 !important; /* Margen negativo para pegarlo al h1 como en la imagen */
    padding-left: 0 !important;
    font-style: italic !important;
    line-height: 1 !important;
}

@media (max-width: 768px) {
    .hero-metodo {
        min-height: 300px;
        padding-top: 120px;
    }
}


@media (max-width: 992px) {
    .asesoria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MÉTODO STATS - Rediseño */
.metodo-stats {
    padding: 100px 0 !important;
    background-color: #FFFFFF !important;
}

.metodo-stats .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 80px !important; /* Espacio amplio entre columnas como en la imagen */
    align-items: start !important;
}

.metodo-stats .stat-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    text-align: left !important;
}

.metodo-stats .stat-number {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(2.4rem, 4vw, 3.5rem) !important;
    font-weight: 700 !important;
    color: #2D2342 !important; /* Color oscuro casi negro para los números */
    line-height: 1 !important;
    margin: 0 !important;
    letter-spacing: -0.02em !important;
}

.metodo-stats .stat-text {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    color: #4A2F71 !important; /* Morado marca para el texto */
    margin: 0 !important;
    font-weight: 500 !important;
    max-width: 320px !important;
}

@media (max-width: 992px) {
    .metodo-stats .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }
    .metodo-stats .stat-item {
        max-width: 450px !important;
        margin: 0 auto !important;
    }
}

/* MÉTODO TRANSITION - Rediseño basado en imagen */
.metodo-transition {
    padding: clamp(60px, 10vh, 120px) 0 !important;
    background: linear-gradient(90deg, #5ebddf 30%, #7d59ab 60%, #9d72f0 90%) !important;
    text-align: center !important;
    width: 100% !important;
}

.metodo-transition p {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(1.4rem, 3.0vw, 2.2rem) !important;
    line-height: 1.35 !important;
    color: #FFFFFF !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

.metodo-transition p strong {
    font-weight: 800 !important;
    color: #FFFFFF !important;
}

@media (max-width: 768px) {
    .metodo-transition {
        padding: 60px 20px !important;
    }
    .metodo-transition p {
        font-size: 1.25rem !important;
        line-height: 1.5 !important;
    }
}

/* MÉTODO FEATURES - Rediseño idéntico a la imagen */
.metodo-features {
    padding: 100px 0 !important;
    background-color: #FFFFFF !important;
}

.metodo-features .features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-bottom: 80px !important;
}

.metodo-features .feature-card {
    background-color: #2D1A45 !important; /* Morado muy oscuro según la imagen */
    padding: 50px 40px !important;
    border-radius: 30px !important;
    color: #FFFFFF !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    min-height: 480px !important;
    transition: transform 0.3s ease !important;
}

.metodo-features .feature-card h3 {
    font-family: 'Manrope', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    letter-spacing: -0.02em !important;
}

.metodo-features .feature-card p {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.metodo-features .feature-card strong {
    font-weight: 800 !important;
    color: #FFFFFF !important;
}

.metodo-features .features-action {
    text-align: center !important;
}

.metodo-features .btn-feature {
    display: inline-block !important;
    background: linear-gradient(90deg, #5ebddf 0%, #9d72f0 100%) !important;
    color: #FFFFFF !important;
    padding: 22px 50px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    box-shadow: 0 10px 25px rgba(94, 189, 223, 0.3) !important;
    transition: all 0.3s ease !important;
    letter-spacing: -0.01em !important;
}

.metodo-features .btn-feature:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(94, 189, 223, 0.4) !important;
    filter: brightness(1.1) !important;
}

@media (max-width: 1100px) {
    .metodo-features .features-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 20px !important;
    }
    .metodo-features .feature-card {
        min-height: auto !important;
    }
}

/* MÉTODO VALIDATION - Rediseño basado en imagen */
.metodo-validation {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #5ebddf 0%, #7d59ab 50%, #9d72f0 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.metodo-validation .validation-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    position: relative !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Caja de Imagen con sombra sólida */
.metodo-validation .validation-image-box {
    flex: 1.1 !important;
    position: relative !important;
    z-index: 1 !important;
}

.metodo-validation .validation-image-container {
    position: relative !important;
    z-index: 2 !important;
    border-radius: 40px !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.metodo-validation .validation-image-container img {
    width: 100% !important;
    display: block !important;
}

.metodo-validation .validation-image-shadow {
    position: absolute !important;
    bottom: -30px !important;
    left: -35px !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #3d472c !important; /* Color verde oliva oscuro de la sombra sólida */
    border-radius: 40px !important;
    z-index: 1 !important;
    opacity: 0.9 !important;
}

/* Tarjeta Blanca de Contenido */
.metodo-validation .validation-card {
    flex: 1 !important;
    background-color: #FFFFFF !important;
    padding: 60px 50px !important;
    border-radius: 40px !important;
    margin-left: -80px !important; /* Superposición como en la imagen */
    position: relative !important;
    z-index: 3 !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
}

.metodo-validation .university-logo {
    position: absolute !important;
    top: 30px !important;
    right: 30px !important;
    max-width: 80px !important;
}

.metodo-validation .university-logo img {
    width: 100% !important;
    height: auto !important;
}

.metodo-validation .validation-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.85rem !important;
    font-weight: 800 !important;
    color: #2D1A45 !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
    max-width: 90% !important;
}

.metodo-validation .validation-text {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    color: #4A2F71 !important;
    margin-bottom: 35px !important;
}

.metodo-validation .validation-subtitle {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #2D1A45 !important;
    margin-bottom: 25px !important;
}

.metodo-validation .validation-list {
    list-style: none !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.metodo-validation .validation-list li {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.05rem !important;
    color: #2D1A45 !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.metodo-validation .validation-list li i {
    color: #2D1A45 !important;
    font-size: 1.1rem !important;
    margin-top: 3px !important;
}

@media (max-width: 1100px) {
    .metodo-validation .validation-wrapper {
        flex-direction: column !important;
        padding: 0 20px !important;
    }
    .metodo-validation .validation-card {
        margin-left: 0 !important;
        margin-top: -50px !important;
        padding: 40px 30px !important;
    }
}





@media (max-width: 768px) {
    .asesoria-grid {
        grid-template-columns: 1fr;
    }
    .asesoria-title {
        font-size: 2.2rem;
    }
}

/* SOMOS SECTION */
.somos-section {
    display: flex;
    width: 100%;
    min-height: 600px;
}

.somos-left {
    flex: 0 0 40%;
    overflow: hidden;
}

.somos-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.somos-right {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
}

.somos-header {
    background-color: #ebeaf1;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.somos-body {
    background: linear-gradient(90deg, #5BB0D5 20%, #8E7BB3 80%);
    color: white;
    padding: 100px 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.container-somos {
    padding: 0 10%;
}

.somos-header h2 {
    color: #3a2e52;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'Manrope', sans-serif;
}

.somos-header h2 span {
    color: #8e85a5;
    font-size: 2.4rem;
    font-weight: 400;
}

.somos-body p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.95;
}

.somos-body p strong {
    font-weight: 700;
}

.somos-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .somos-section {
        flex-direction: column;
    }
    .somos-left {
        height: 400px;
    }
    .somos-header h2 {
        font-size: 2rem;
    }
    .somos-body p {
        font-size: 1.2rem;
    }
}

/* RESULTS SECTION */
.results-section {
    padding: 120px 0;
    background-color: white;
    text-align: center;
    width: 100%;
}

.container-results {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

.results-title {
    color: #2D1A4D; /* Morado muy oscuro */
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 100px;
    font-family: 'Manrope', sans-serif;
}

.results-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-bottom: 80px;
    width: 100%;
}

.result-item {
    flex: 1;
    padding: 0 40px;
    border-right: 1px solid #d1d1d1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;
}

.result-item.no-border {
    border-right: none;
}

.result-value {
    color: #2D1A4D; /* Morado muy oscuro */
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1;
}

.result-item p {
    color: #4A3475; /* Morado medio */
    font-size: 1.2rem;
    line-height: 1.4;
    max-width: 320px;
    margin: 0 auto;
}

.results-action {
    margin-top: 60px;
}

.btn-purple-action {
    background: linear-gradient(90deg, #5BB0D5 0%, #8E7BB3 100%);
    color: white;
    padding: 20px 60px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-purple-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(142, 123, 179, 0.4);
}

@media (max-width: 1200px) {
    .result-value {
        font-size: 3.5rem;
    }
    .result-item {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .results-grid {
        flex-wrap: wrap;
    }
    .result-item {
        flex: 0 0 50%;
        border-right: none;
        margin-bottom: 60px;
        min-height: auto;
    }
    .result-item:nth-child(odd) {
        border-right: 1px solid #d1d1d1;
    }
}

@media (max-width: 600px) {
    .result-item {
        flex: 0 0 100%;
        border-right: none !important;
        padding: 0;
    }
    .results-title {
        font-size: 2.5rem;
    }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 120px 0;
    background-color: #f1f3f6;
    text-align: center;
}

.testimonials-title {
    color: #2D1A4D; /* Morado muy oscuro */
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 80px;
    font-family: 'Manrope', sans-serif;
    opacity: 1; /* Aumentado de 0.9 para mayor claridad */
}

.testimonials-carousel-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    width: max-content;
    animation: scrollTestimonials 60s linear infinite;
    gap: 30px;
}

.testimonials-carousel-wrapper:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 350px; /* Ancho fijo para las tarjetas en el carrusel */
    padding: 60px 40px;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    text-align: left;
    transition: transform 0.3s ease;
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 8 - 30px * 8)); }
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.bg-soft-green { background-color: #dfe4e1; }
.bg-soft-blue { background-color: #dfe4ed; }
.bg-soft-beige { background-color: #f0eae2; }
.bg-soft-lavender { background-color: #d6deeb; }

.testimonial-text {
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 400;
}

.testimonial-author {
    align-self: flex-end;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3d344d;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-title {
        font-size: 2rem;
    }
    .testimonial-card {
        min-height: auto;
        padding: 40px 30px;
    }
}

/* FINAL CTA SECTION */
.final-cta-section {
    padding: 150px 0;
    background-color: white;
    text-align: center;
}

.final-cta-title {
    color: #2D1A4D; /* Morado muy oscuro */
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
    opacity: 1; /* Aumentado para mayor intensidad */
}

.final-cta-subtitle {
    color: #4A3475; /* Morado medio */
    font-size: 1.8rem;
    margin-bottom: 60px;
    font-weight: 400;
}

.btn-final-cta {
    background: linear-gradient(90deg, #5BB0D5 0%, #8E7BB3 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 30px; /* Bordes más redondeados para mejor diseño */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(142, 123, 179, 0.4);
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 2.5rem;
    }
    .final-cta-subtitle {
        font-size: 1.4rem;
    }
    .final-cta-section {
        padding: 100px 0;
    }
}

/* HERO STATS BOX */
.hero-stats-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 90%;
    max-width: 950px;
    text-align: center;
}

.hero-stats-tagline {
    color: white;
    font-size: 1.9rem;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-stats-box {
    background-color: rgba(122, 100, 155, 0.95);
    border-radius: 25px;
    padding: 25px 30px;
    color: white;
    text-align: center;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* Alinea las columnas al inicio (arriba) */
    margin-bottom: 25px;
}

.stat-col {
    flex: 1;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stats-box .stat-col .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 10px;
    line-height: 1;
    color: #FFFFFF;
}

.stat-desc {
    display: block;
    font-size: 0.85rem;
    line-height: 1.2;
    font-weight: 400;
    opacity: 0.9;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 60px; /* Un poco más largo para cubrir el área */
    background-color: rgba(255, 255, 255, 0.3);
    margin-top: 10px; /* Alineado con los números */
}

.stats-button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.btn-stats {
    padding: 12px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-stats.btn-cream {
    background-color: #ede9e3;
    color: #5a4a7d;
}

.btn-stats.btn-green {
    background-color: #b8c19d;
    color: #2d2342;
}

.btn-stats:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0.9;
}

.btn-main {
    background: var(--purple);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
}

/* QUOTE SECTION */
.quote-section {
    background-color: #e8e6eb;
    padding: 68px 0 74px;
    text-align: center;
    overflow: hidden;
}

.quote-title {
    margin: 0 auto 8px;
    max-width: 1200px;
    color: #6a4b89;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    line-height: 1.12;
    font-weight: 800;
    
    /* Estado inicial para Scroll Reveal */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-text {
    margin: 0 auto;
    max-width: 1080px;
    color: #6f4f92;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 3.25rem);
    line-height: 1.2;
    font-weight: 400;

    /* Estado inicial para Scroll Reveal */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

/* Clase que activa la animación cuando entra al viewport */
.quote-section.reveal .quote-title,
.quote-section.reveal .quote-text {
    opacity: 1;
    transform: translateY(0);
}

.quote-strong {
    display: block;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-weight: 800;
    color: #684986;
}

/* WAYS SECTION */
.ways-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(120, 88, 167, 0.09) 0%, rgba(120, 88, 167, 0) 28%),
        radial-gradient(circle at 86% 82%, rgba(52, 169, 221, 0.08) 0%, rgba(52, 169, 221, 0) 26%),
        #e9e9ea;
    text-align: center;
}

.ways-modern-title {
    margin: 0 auto 6px;
    max-width: 1200px;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.78rem, 3vw, 2.95rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #3f2566;
}

.ways-modern-subtitle {
    margin: 0 auto 42px;
    max-width: 900px;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.32rem, 2.15vw, 2.15rem);
    font-weight: 650;
    line-height: 1.18;
    color: #3f2566;
}

.ways-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1320px;
    margin: 0 auto;
    align-items: stretch;
}

.ways-modern-card {
    position: relative;
    background: rgba(248, 248, 250, 0.86);
    border-radius: 20px;
    border: 1px solid rgba(104, 84, 132, 0.12);
    box-shadow: 0 10px 24px rgba(47, 26, 73, 0.08);
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    
    /* Estado inicial para Scroll Reveal */
    opacity: 0;
    transform: translateX(50px);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.22s ease;
}

/* Animación escalonada para las tarjetas */
.ways-modern-card:nth-child(2) { transition-delay: 0.15s; }
.ways-modern-card:nth-child(3) { transition-delay: 0.3s; }

/* Clase que activa la animación cuando entra al viewport */
.ways-modern-card.reveal {
    opacity: 1;
    transform: translateX(0);
}

.ways-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(47, 26, 73, 0.14);
}

.ways-modern-card::before {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    top: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(74, 44, 116, 0.75) 0%, rgba(48, 168, 220, 0.75) 100%);
}

.ways-modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(47, 26, 73, 0.12);
}

.ways-modern-image {
    width: 100%;
    aspect-ratio: 1.28;
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: 12px;
}

.ways-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ways-modern-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ways-modern-content h3 {
    margin: 0 0 2px;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.28rem, 1.65vw, 2.05rem);
    font-weight: 700;
    line-height: 1.1;
    color: #3f2566;
}

.ways-modern-kicker {
    margin: 0 0 12px;
    color: #443064;
    font-size: 0.97rem;
    line-height: 1.28;
    font-weight: 500;
}

.ways-modern-content p {
    margin: 0 0 10px;
    color: #483566;
    font-size: 0.95rem;
    line-height: 1.35;
}

.ways-modern-content p:last-of-type {
    margin-bottom: 0;
}

.ways-modern-btn {
    margin-top: auto;
    align-self: center;
    border: 0;
    border-radius: 8px;
    min-width: 176px;
    padding: 9px 14px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(42, 29, 63, 0.15);
}

.ways-modern-btn-purple {
    background: #3f1d66;
}

.ways-modern-btn-cyan {
    background: #2fa8dc;
}

@media (max-width: 1200px) {
    .ways-modern-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ways-modern-title {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .ways-modern-title {
        font-size: clamp(1.55rem, 6.7vw, 2.06rem);
    }

    .ways-modern-subtitle {
        margin-bottom: 24px;
        font-size: clamp(1.12rem, 5.1vw, 1.55rem);
    }

    .ways-modern-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ways-modern-card {
        padding: 14px;
        border-radius: 14px;
    }

    .ways-modern-kicker,
    .ways-modern-content p {
        font-size: 0.9rem;
    }
}

.text-purple {
    color: var(--purple) !important;
}

.btn-way {
    margin-top: auto;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.btn-green-light {
    background-color: #ced4b8;
    color: #2d2342;
}

.btn-purple-solid {
    background-color: var(--purple);
    color: white;
}

.btn-way:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* HERO METODO */
.hero-metodo {
    background-color: #736387;
    height: 30vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 25vh 20px 0; /* Ajustado padding superior para compensar el nav fijo */
}

.hero-metodo .hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 3.5rem;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-metodo .hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-style: italic;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding-left: 0;
}

@media (max-width: 768px) {
    .hero-metodo .hero-title {
        font-size: 2rem;
    }
    .hero-metodo .hero-subtitle {
        font-size: 2.2rem;
    }
    .hero-metodo {
        height: 50vh;
        min-height: 350px;
        padding: 60px 20px 0; /* Ajuste para móvil */
    }
}

/* HERO EMPRESAS */
.hero-empresas {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinea contenido a la derecha */
    color: white;
}

/* Overlay para mejorar legibilidad */
.hero-empresas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Sutil oscurecimiento */
    z-index: 1;
}

.container-hero-empresas {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 100% !important; /* Elimina la restricción de los 1200px del contenedor base */
    padding-right: 3vw; /* Reducido de 5vw para pegarlo más al borde derecho */
}

.hero-empresas-content {
    max-width: 900px; /* Aumentado de 600px para permitir 2 líneas */
    text-align: right;
}

.hero-empresas-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Manrope', sans-serif;
}

.btn-empresas-hero {
    display: inline-block;
    background: linear-gradient(90deg, #5BB0D5 0%, #8E7BB3 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-empresas-hero:hover {
    background-color: var(--purple-light_btn_1);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .hero-empresas-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-empresas {
        justify-content: left;
        text-align: left;
        height: 70vh; /* Reducido en un 30% respecto al 100vh original */
        min-height: 400px; /* Ajustada la altura minima */
        padding-top: 35vh; /* Bajamos el contenido un poco más desde el top */
        align-items: flex-start; /* Alineamos arriba para que el padding tenga efecto directo */
    }
    .container-hero-empresas {
        justify-content: left;
        padding-right: 20px;
    }
    .hero-empresas-content {
        text-align: left;
    }
    .hero-empresas-content h1 {
        font-size: 2.22rem;
    }
}

/* EMPRESAS INTRO SECTION */
.empresas-intro {
    background: linear-gradient(135deg, #452a6b 0%, #5b4583 50%, #6d5892 100%);

    padding: 100px 0;
    text-align: center;
    color: white;
}

.empresas-intro h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.empresas-intro p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4;
    max-width: 1100px;
    margin: 0 auto 5px;
    opacity: 0.95;
}

@media (max-width: 992px) {
    .empresas-intro h2 {
        font-size: 2.4rem;
    }
    .empresas-intro p {
        font-size: 1.3rem;
        padding: 0 20px;
    }
}

/* EMPRESAS STATS SECTION */
.empresas-stats {
    background-color: #ebedf2; /* Tono grisáceo claro de la imagen */
    padding: 100px 0;
    text-align: center;
}

.empresas-stats-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.22rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.empresas-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.emp-stat-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0 10px;
}

.emp-stat-num {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Manrope', sans-serif;
}

.emp-stat-desc {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
    flex-grow: 1; /* Esto empuja el siguiente elemento (el link) al fondo */
}

.emp-stat-source {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    text-decoration: none;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .emp-stat-num { font-size: 4rem; }
    .emp-stat-desc { font-size: 1.2rem; }
}

@media (max-width: 992px) {
    .empresas-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    .empresas-stats-title { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .empresas-stats-grid {
        grid-template-columns: 1fr;
    }
    .emp-stat-item {
        text-align: center;
    }
}

/* EMPRESAS IMPULSE SECTION */
.empresas-impulse {
    display: flex;
    min-height: 600px;
    width: 100%;
}

.impulse-left {
    flex: 1;
    background: linear-gradient(90deg, #5ebddf 30%, #5ebddf 40%, #9d72f0 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    color: white;
}

.impulse-content {
    max-width: 600px;
}

.impulse-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

.impulse-texts p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-impulse {
    display: inline-block;
    background-color: var(--dark);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border: 1px solid var(--purple_2);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-impulse:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.impulse-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .empresas-impulse {
        flex-direction: column;
        min-height: auto;
    }
    .impulse-right {
        width: 100%;
        height: 350px;
        order: 1; /* Imagen arriba en móvil si se desea, o abajo por defecto */
        flex: none;
    }
    .impulse-left {
        width: 100%;
        order: 2;
        padding: 60px 20px;
        flex: none;
    }
    .impulse-content h2 {
        font-size: 2.2rem;
    }
}

/* EMPRESAS BENEFITS SECTION */
.empresas-benefits {
    background-color: #ebedf2; /* Gris claro consistente con stats */
    padding: 120px 0;
    text-align: center;
}

.benefits-title {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    background: white;
    border-radius: 40px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(115, 99, 135, 0.9);
}

.benefit-img {
    height: 180px; /* Reducido de 250px */
    display: flex;
    align-items: flex-end; /* Alineado al fondo para acercarse al h3 */
    justify-content: center;
    width: 100%;
    margin-bottom: 15px; /* Espacio controlado */
}

.benefit-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #2D2342;
    margin-bottom: 5px; /* Reducido un poco */
    line-height: 1.1;
    font-weight: 700;
    min-height: 110px; /* Aumentado para alinear el inicio de p */
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card p {
    font-size: 0.90rem; /* Reducido según solicitud */
    line-height: 1.4;
    color: #4A4A4A;
    margin-top: 0; /* Quitamos auto para que comience donde termina el h3 */
    text-align: left; /* Alineado a la izquierda según solicitud */
    width: 100%;
}

@media (max-width: 1200px) {
    .benefits-grid { gap: 20px; }
    .benefit-card { padding: 40px 25px; }
    .benefit-card h3 { font-size: 1.5rem; }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .benefits-title { font-size: 2.2rem; }
}

/* EMPRESAS REFERENTES SECTION */
.empresas-referentes {
    background-color: #9a9fb3; /* Color gris-azulado consistente */
    padding: 100px 0;
    text-align: center;
    color: white;
}

.empresas-referentes h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.empresas-referentes p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto 50px;
    opacity: 0.95;
}

.empresas-referentes .referentes-tagline {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0;
    opacity: 1;
}

@media (max-width: 992px) {
    .empresas-referentes h2 {
        font-size: 2.5rem;
    }
    .empresas-referentes p {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    .empresas-referentes .referentes-tagline {
        font-size: 1.4rem;
    }
}

/* EMPRESAS CULTURE SECTION */
.empresas-culture {
    display: flex;
    min-height: 800px; /* Aumentado de 600px para que la imagen se vea completa por abajo */
    width: 100%;
}

.culture-left {
    flex: 1;
    background-size: cover;
    background-position: top center; /* Ajustado de center para que no se corte arriba */
    background-repeat: no-repeat;
}

.culture-right {
    flex: 1;
    background: linear-gradient(135deg, #4A2F71 0%, #5a418a 40%, #8263bd 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 40px 80px 60px; /* Reducido el padding izquierdo (60px) para acercar el texto a la imagen */
    color: white;
}

.culture-content {
    max-width: 600px;
}

.culture-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    font-family: 'Manrope', sans-serif;
}

.culture-texts p {
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 25px;
    opacity: 0.9;
}

.culture-step-text {
    font-size: 1.6rem !important;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 40px !important;
}

.culture-action {
    text-align: right;
    width: 100%;
}

.btn-culture {
    display: inline-block;
    background: linear-gradient(90deg, #5ebddf 50%, #9d72f0 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border: 1px solid var(--purple_btn_1);
    transition: all 0.3s ease;
}

.btn-culture:hover {
    background-color: var(--dark);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .empresas-culture {
        flex-direction: column;
        min-height: auto;
    }
    .culture-left {
        width: 100%;
        height: 350px; /* Reducido un poco para móvil */
        order: 1;
        flex: none; /* Asegura que respete el height */
    }
    .culture-right {
        width: 100%;
        order: 2;
        padding: 60px 20px;
        flex: none;
    }
    .culture-content h2 {
        font-size: 2.22rem;
    }
    .culture-action {
        text-align: center;
    }
}

/* METODO STATS */
.metodo-stats {
    background-color: #FFFFFF;
    padding: 140px 0; /* Un poco más de aire como en la imagen */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px; /* Más separación entre columnas */
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: left;
}

.metodo-stats .stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    color: #AD9A7B; /* Color café-dorado de la imagen */
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.metodo-stats .stat-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #4A4A4A;
    font-weight: 400;
    max-width: 380px;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .metodo-stats {
        padding: 80px 20px;
    }
    .metodo-stats .stat-number {
        font-size: 2.5rem;
    }
    .metodo-stats .stat-text {
        max-width: 100%;
    }
}

/* METODO TRANSITION */
.metodo-transition {
    background-color: #A799B7;
    padding: 10vh 0;
    text-align: center;
    color: var(--white);
}

.metodo-transition .container {
    max-width: 1400px; /* Contenedor más ancho para esta sección */
}

.metodo-transition p {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 400;
    margin: 0 auto;
    max-width: 100%; 
}

.metodo-transition strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .metodo-transition p {
        font-size: 1.4rem;
    }
    .metodo-transition {
        padding: 60px 20px;
    }
}

/* METODO BIRTH SECTION */
.metodo-birth {
    padding: 80px 0 50px;
    background-color: var(--white);
}

.birth-card {
    background-image: linear-gradient(to right, rgba(20, 15, 30, 0.8) 20%, rgba(20, 15, 30, 0.2) 50%, transparent 100%), var(--birth-bg);
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    padding: 60px 60px; /* Reducido para acercar a la esquina */
    color: var(--white);
    min-height: 600px;
    display: flex;
    align-items: flex-start; /* Movido hacia arriba */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.birth-content {
    max-width: 500px;
}

.birth-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.8rem; /* Más pequeño */
    font-weight: 400;
    margin-bottom: 30px; /* Menos espacio */
    line-height: 1.1;
}

.birth-title strong {
    font-weight: 700;
    display: block;
}

.birth-list {
    list-style: none;
    padding: 0;
}

.birth-list li {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem; /* Más pequeño */
    margin-bottom: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.birth-list li strong {
    font-weight: 700;
    margin-right: 8px;
}

@media (max-width: 992px) {
    .birth-card {
        padding: 40px;
        min-height: 450px;
        align-items: flex-start;
    }
    .birth-title {
        font-size: 2.2rem;
    }
    .birth-list li {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .birth-card {
        background-image: linear-gradient(to bottom, rgba(20, 15, 30, 0.9) 40%, rgba(20, 15, 30, 0.4) 100%), var(--birth-bg);
        border-radius: 20px;
        padding: 40px 20px;
        text-align: center;
        justify-content: center;
        align-items: center; /* Centrado en móvil para mejor lectura */
    }
    .birth-title {
        font-size: 1.8rem;
    }
    .birth-list li {
        font-size: 1rem;
        justify-content: center;
    }
}

/* METODO FEATURES SECTION */
.metodo-features {
    padding: 50px 0 100px;
    background-color: var(--white);
}

.metodo-features .container {
    max-width: 1400px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: #6B527A;
    padding: 40px 35px;
    border-radius: 30px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.feature-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 45px;
    line-height: 1.2;
}

.feature-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
}

.feature-card p strong {
    font-weight: 700;
}

.features-action {
    text-align: center;
}

.btn-feature {
    display: inline-block;
    background-color: #A799B7;
    color: var(--white);
    padding: 20px 60px;
    border-radius: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #9688a6;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .feature-card {
        min-height: auto;
    }
    .btn-feature {
        font-size: 1.2rem;
        padding: 15px 40px;
    }
}

/* METHOD JOURNEY SECTION */
.method-journey {
    background:
        radial-gradient(circle at 8% 14%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 26%),
        radial-gradient(circle at 88% 82%, rgba(77, 201, 245, 0.14) 0%, rgba(77, 201, 245, 0) 24%),
        #592c8f;
    color: #ffffff;
    padding: 62px 0 54px;
}

.method-journey-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 34px;
}

.method-journey-title {
    margin: 0;
    max-width: 560px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.52rem, 2.1vw, 2.25rem);
    line-height: 1.1;
    font-weight: 600;
    color: #ffffff;
}

.method-journey-pill {
    margin: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    padding: 12px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.96rem, 1.05vw, 1.14rem);
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(2px);
}

.method-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.method-journey-item {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    backdrop-filter: blur(2px);
    padding: 18px 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* Estado inicial para Scroll Reveal */
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.2s ease, 
                border-color 0.2s ease;
}

/* Secuencia de pasos 1, 2 y 3 */
.method-journey-item:nth-child(2) { transition-delay: 0.2s; }
.method-journey-item:nth-child(3) { transition-delay: 0.4s; }

/* Clase que activa la animación cuando entra al viewport */
.method-journey-item.reveal {
    opacity: 1;
    transform: translateY(0);
}

.method-journey-item:hover {
    transform: translateY(-4px);
    border-color: rgba(109, 212, 245, 0.78);
    box-shadow: 0 14px 28px rgba(32, 14, 54, 0.26);
}

.method-journey-number {
    font-family: 'Sora', 'Manrope', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 0 10px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    background: linear-gradient(135deg, #47b8ea 0%, #7a66db 100%);
    box-shadow: 0 8px 18px rgba(30, 14, 53, 0.24);
}

.method-journey-body {
    min-width: 0;
    width: 100%;
    text-align: center;
}

.method-journey-image-wrap {
    border-radius: 0;
    padding: 0;
    background: transparent;
    margin-bottom: 10px;
    box-shadow: none;
}

.method-journey-image-wrap img {
    width: 100%;
    aspect-ratio: 1.43;
    border-radius: 14px;
    border: 1px solid rgba(124, 96, 170, 0.45);
    object-fit: cover;
    display: block;
}

.method-journey-body h3 {
    margin: 0;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.34rem);
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    max-width: 19ch;
}

.method-journey-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.method-journey-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(92%, 420px);
    padding: 13px 28px;
    border-radius: 999px;
    background: #2fa8dc;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.02rem, 1.2vw, 1.34rem);
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 14px 28px rgba(22, 12, 40, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.method-journey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(22, 12, 40, 0.32);
}

@media (max-width: 1100px) {
    .method-journey-top {
        gap: 12px;
    }

    .method-journey-pill {
        align-self: flex-start;
        white-space: normal;
    }

    .method-journey-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 620px;
        margin: 0 auto;
    }

    .method-journey-body h3 {
        max-width: none;
    }
}

@media (max-width: 576px) {
    .method-journey {
        padding: 50px 0 44px;
    }

    .method-journey-top {
        margin-bottom: 22px;
    }

    .method-journey-pill {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .method-journey-item {
        padding: 14px 12px;
    }

    .method-journey-number {
        width: 46px;
        height: 46px;
        font-size: 2rem;
    }

    .method-journey-body h3 {
        font-size: clamp(0.94rem, 4.2vw, 1.14rem);
    }

    .method-journey-cta {
        margin-top: 22px;
    }

    .method-journey-btn {
        min-width: 100%;
        padding: 12px 18px;
        font-size: clamp(0.98rem, 5.8vw, 1.2rem);
    }
}

/* FOUNDER SECTION */
.founder-section {
    width: 100%;
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-text-box {
    background-color: #e8e8ea;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(28px, 4vw, 52px);
}

.founder-content {
    max-width: 700px;
}

.founder-title {
    margin: 0 0 28px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.4rem, 3.2vw, 3.50rem);
    line-height: 1.6;
    font-weight: 800;
    color: #38245f;
}

.founder-copy {
    margin: 0 0 60px;
    font-size: clamp(1.4rem, 1.45vw, 1.95rem);
    line-height: 1.6;
    color: #3f2b67;
}

.btn-founder {
    background-color: #2fa8dc;
    color: white;
    padding: 12px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1.55rem, 2vw, 1.75rem);
    line-height: 1.2;
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-founder:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(31, 132, 176, 0.35);
    background-color: #2699ca;
}

/* TRUST SECTION */
.trust-section {
    background: linear-gradient(90deg, #58b8cf 0%, #7f63df 100%);
    padding: 86px 0 92px;
    text-align: center;
}

.trust-section .container {
    max-width: 1280px;
}

.trust-title {
    color: #f8f5ff;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2.1rem, 4vw, 4.1rem);
    font-weight: 700;
    max-width: 1120px;
    margin: 0 auto 54px;
    line-height: 1.12;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1220px;
    margin: 0 auto;
}

.trust-card {
    position: relative;
    border-radius: 44px;
    padding: 32px 26px 28px;
    display: grid;
    grid-template-rows: 52px 74px 1fr;
    align-items: start;
    justify-items: center;
    min-height: 246px;
    color: #ffffff;
    background: rgba(232, 245, 255, 0.15);
    border: 1px solid rgba(219, 242, 255, 0.6);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 10px 22px rgba(25, 59, 98, 0.16);
    backdrop-filter: blur(10px);
    
    /* Estado inicial para Scroll Reveal */
    opacity: 0;
    transform: translateX(50px);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.24s ease;
}

/* Animación escalonada para las 6 tarjetas */
.trust-card:nth-child(2) { transition-delay: 0.1s; }
.trust-card:nth-child(3) { transition-delay: 0.2s; }
.trust-card:nth-child(4) { transition-delay: 0.3s; }
.trust-card:nth-child(5) { transition-delay: 0.4s; }
.trust-card:nth-child(6) { transition-delay: 0.5s; }

/* Clase que activa la animación cuando entra al viewport */
.trust-card.reveal {
    opacity: 1;
    transform: translateX(0);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 16px 30px rgba(25, 59, 98, 0.2);
}

.trust-icon {
    width: auto;
    height: 52px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: clamp(1.85rem, 2.7vw, 2.55rem);
    color: #ffffff;
    line-height: 1;
}

.trust-card h3 {
    color: #ffffff;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.02rem, 1.3vw, 1.35rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    min-height: 2.4em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.trust-card p {
    color: rgba(246, 251, 255, 0.94);
    font-size: clamp(0.96rem, 1.15vw, 1.4rem);
    line-height: 1.34;
    margin: 0;
    text-align: center;
    width: 100%;
}

@media (max-width: 1200px) {
    .trust-title {
        font-size: 2.65rem;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-title {
        font-size: clamp(1.75rem, 8vw, 2.45rem);
        margin-bottom: 28px;
    }
    .trust-card {
        border-radius: 30px;
        padding: 24px 20px;
        min-height: auto;
        grid-template-rows: auto auto auto;
    }
    .trust-icon {
        height: auto;
        margin-bottom: 8px;
    }
    .trust-card h3 {
        min-height: auto;
        margin-bottom: 6px;
    }
}

/* COMMUNITY SECTION (REDESIGN) */
.community-section {
    background: linear-gradient(155deg, #2f1f49 0%, #4c2f76 54%, #6f4aa9 100%);
    padding: 80px 0;
    color: white;
    overflow: hidden;
    /* Rediseño: Sin bordes redondeados ni márgenes laterales para que ocupe todo el ancho */
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.community-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding: 0 5%; /* Padding dinámico para alinearse con el resto del contenido */
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.community-title-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    max-width: 350px;
    line-height: 1.1;
    margin: 0;
}

.community-stats {
    display: flex;
    gap: 40px;
}

.c-stat-item {
    text-align: center;
    max-width: 150px;
}

.c-stat-val {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.c-stat-item p {
    font-size: 0.9rem;
    line-height: 1.2;
    opacity: 0.9;
    margin: 0;
}

/* CAROUSEL */
.reviews-carousel-container {
    width: 100%;
    padding: 10px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollInfinite 60s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    background-color: #f0ede8; 
    color: #3a304d;
    padding: 25px;
    border-radius: 25px;
    width: 320px; /* Tarjetas más pequeñas */
    min-height: 200px; /* Altura reducida un 30% (de 280px a 200px aprox) */
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: #7a649b;
    opacity: 0.8;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 30px;
    font-weight: 400;
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 10)); /* 320px ancho + 30px gap */
    }
}

@media (max-width: 1200px) {
    .community-header {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .community-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    .community-title-box h2 {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .community-stats {
        flex-direction: column;
        gap: 25px;
    }
    .community-title-box h2 {
        font-size: 1.8rem;
    }
    .review-card {
        width: 280px;
        min-height: 250px;
        padding: 25px;
    }
    @keyframes scrollInfinite {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-310px * 10));
        }
    }
}

/* SECCIONES GENERALES */
.section-padding { padding: 100px 0; }
.bg-light { background-color: white; }
.bg-purple { background-color: var(--purple); }
.text-white { color: white; }
.section-title { font-family: 'Manrope', sans-serif; font-size: 32px; text-align: center; margin-bottom: 60px; color: var(--purple); }
.section-title.text-white { color: white; }

/* MÉTODO GRID */
.metodo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.metodo-card { background: white; padding: 40px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.step-num { font-size: 50px; font-weight: 800; opacity: 0.1; color: var(--purple); display: block; margin-bottom: 10px; }
.metodo-card h3 { color: var(--purple); margin-bottom: 15px; }

/* TABLA COMPARATIVA */
.comparison-new-section {
    background-color: #d6d7df;
    padding: 92px 0 80px;
}

.comparison-new-title {
    color: #3f2369;
    margin-bottom: 54px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.14;
}

.comparison-title-light {
    display: block;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.65rem, 2.35vw, 2.75rem);
    font-weight: 400;
    white-space: nowrap;
}

.comparison-title-strong {
    display: block;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.85rem, 2.7vw, 3.15rem);
    font-weight: 800;
    white-space: nowrap;
}

.comparison-table-wrapper {
    max-width: 1260px;
    margin: 0 auto;
    padding: 18px;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    box-shadow: 0 14px 32px rgba(43, 34, 62, 0.12);
}

.comparison-new-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    text-align: left;
    background-color: transparent;
    min-width: 980px;
}

.comparison-new-table th, .comparison-new-table td {
    padding: 14px 18px;
    border-bottom: none;
    vertical-align: middle;
}

.comparison-new-table th {
    font-size: clamp(1.1rem, 1.45vw, 1.95rem);
    color: #111216;
    font-weight: 700;
    text-align: left;
    background: rgba(255, 255, 255, 0.62);
}

.comparison-new-table thead th:first-child {
    border-radius: 14px 0 0 14px;
}

.comparison-new-table thead th:last-child {
    border-radius: 0 14px 14px 0;
}

.comparison-new-table th:not(:first-child),
.comparison-new-table td:not(:first-child) {
    text-align: center;
}

.comparison-new-table td:first-child {
    font-weight: 600;
    color: #16171c;
    width: 34%;
    font-size: clamp(1rem, 1.18vw, 1.58rem);
}

.comparison-new-table tbody td {
    background: rgba(255, 255, 255, 0.56);
}

.comparison-new-table tbody td:first-child {
    border-radius: 14px 0 0 14px;
}

.comparison-new-table tbody td:last-child {
    border-radius: 0 14px 14px 0;
}

.comparison-new-table tbody tr {
    transition: transform 0.2s ease;
}

.comparison-new-table tbody tr:hover {
    transform: translateY(-1px);
}

.col-psicovivir {
    width: 20%;
    background-color: #ffffff;
}

.comparison-new-table th.col-psicovivir,
.comparison-new-table td.col-psicovivir {
    background-color: #ffffff;
}

.comparison-new-table th.col-psicovivir {
    border-left: 1px solid #ccd0d8;
    border-right: 1px solid #ccd0d8;
}

.comparison-new-table td.col-psicovivir {
    border-left: 1px solid #d5d8e1;
    border-right: 1px solid #d5d8e1;
    box-shadow: inset 0 0 0 1px rgba(229, 231, 238, 0.8);
}

.table-logo {
    display: block;
    max-width: 190px;
    height: auto;
    margin: 0 auto;
}

.comparison-new-table .fa-check {
    color: #79c79a;
    font-size: 1.45rem;
}

.comparison-new-table .fa-xmark {
    color: #e30011;
    font-size: 1.45rem;
}

.text-limited {
    font-size: 1.05rem;
    color: #1f2127;
    font-weight: 500;
}

.comparison-footer {
    margin-top: 60px;
}

.btn-comparison {
    background-color: #7a649b;
    color: white;
    padding: 18px 50px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(122, 100, 155, 0.3);
}

.btn-comparison:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 100, 155, 0.4);
    background-color: #6b5a8a;
    color: white;
}

/* SECCION CONTIGO+ */
.comunidad-feature-section {
    background: #d6d7df;
    padding: 0;
}

.comunidad-feature-section .container {
    max-width: none;
    width: 100%;
    padding: 0;
}

.comunidad-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.comunidad-feature-copy,
.comunidad-feature-media {
    border-radius: 0;
    overflow: hidden;
}

.comunidad-feature-copy {
    background: linear-gradient(155deg, #2f1f49 0%, #4c2f76 54%, #6f4aa9 100%);
    color: #f7f3ff;
    padding: clamp(28px, 4vw, 56px) clamp(28px, 3.4vw, 46px) clamp(28px, 4vw, 56px) clamp(56px, 7vw, 110px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comunidad-feature-pill {
    display: inline-flex;
    align-self: flex-start;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #64c8ea 0%, #8c5cea 100%);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.comunidad-feature-copy h2 {
    font-size: clamp(2rem, 3.7vw, 3.6rem);
    line-height: 1.08;
    margin: 0 0 12px;
    color: #ffffff;
}

.comunidad-feature-copy h2 strong {
    font-weight: 800;
    font-size: 1.2em;
    line-height: 1.02;
}

.comunidad-feature-copy p {
    font-size: 1.9rem;
    margin: 0 0 22px;
    color: rgba(241, 247, 255, 0.95);
    max-width: 35ch;
}

.comunidad-feature-btn {
    display: inline-flex;
    align-self: center;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 999px;
    color: #2f1f49;
    background: #ffffff;
    font-weight: 700;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comunidad-feature-btn:hover {
    background: #ffffff;
    color: #4b2f76;
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.comunidad-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* STATS & TESTIMONIALS (OLD - REMOVED) */

/* ACCORDION */
.faq-section {
    background-color: #f1f3f4; /* Fondo gris muy claro de la imagen */
    padding: 100px 0;
}

.faq-title {
    text-align: center;
    color: #4b2f76; /* Morado intenso oscuro de la imagen */
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -2px;
}

.accordion {
    max-width: 1100px;
    margin: 0 auto;
}

.acc-item {
    background: transparent;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1.5px solid #aba9a9; /* Línea gris de la imagen */
}

.acc-header {
    padding: 32px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.acc-header i {
    display: block; /* Volvemos a mostrar el icono */
    font-size: 1.2rem;
    color: #4b2f76;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.acc-item.active .acc-header i {
    transform: rotate(45deg);
    color: #8c5cea;
}

.acc-item.active .acc-header i {
    transform: rotate(45deg);
}

.acc-body {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.acc-item.active .acc-body {
    padding: 0 0 25px 0;
    max-height: 200px;
    opacity: 1;
}

/* FOOTER */
.main-footer {
    color: white;
    padding: 80px 0 30px;
    font-family: 'Manrope', sans-serif;
}

.main-footer.footer-gradient {
    background: linear-gradient(155deg, #2f1f49 0%, #4c2f76 54%, #6f4aa9 100%);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(220px, 1.05fr) minmax(280px, 1.3fr) minmax(260px, 1.15fr);
    gap: 48px;
    align-items: start;
    margin-bottom: 60px;
}

.footer-logo-img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
    color: #dcdcdc;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    background-color: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #7a649b;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.footer-col p {
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    line-height: 1.7;
}

.footer-notice {
    max-width: 360px;
    justify-self: end;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: #ced4b8; /* Verde oliva claro al hover */
}

.footer-email {
    color: #ced4b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin: 10px 0 20px;
}

.footer-location {
    font-size: 0.9rem;
    color: #dcdcdc;
}

.footer-location i {
    margin-right: 8px;
    color: #7a649b;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #aaa;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-notice {
        max-width: none;
        justify-self: stretch;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
}


/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    /* Nav */
    .nav-logo {
        padding-left: 2vw;
    }
    .nav-logo-img {
        height: 60px;
    }
    .nav-links {
        gap: 15px;
    }
    .nav-links a, .btn-nav {
        font-size: 16px;
    }
    #main-nav .nav-container {
        gap: 15px;
    }

    .hero-content h1 { 
        font-size: 2.5rem; 
    }
    .metodo-header { margin-left: 5vw; }
    .trust-title { font-size: 2.65rem; }
}

@media (max-width: 992px) {
    /* Nav */
    .nav-logo {
        padding-left: 0; /* Reset del padding de escritorio en móvil */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 60px; /* Reducido para dar espacio al logo arriba */
        align-items: center;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 15px;
    }

    .nav-mobile-only {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .nav-mobile-logo {
        margin-bottom: 30px;
    }

    .mobile-logo-img {
        height: 60px;
        width: auto;
    }

    .nav-links a.btn-nav-mobile {
        background: linear-gradient(90deg, #6e4d98 0%, #7f5ba9 100%);
        color: white !important;
        padding: 15px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem;
        display: inline-block;
        box-shadow: 0 8px 20px rgba(83, 57, 117, 0.25);
    }

    .nav-links a.btn-nav-mobile-outline {
        border: 2px solid #6e4d98;
        color: #6e4d98 !important;
        padding: 13px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text) !important;
        font-size: 1.5rem;
    }

    /* DROPDOWN MOBILE ADJUSTMENTS */
    .nav-dropdown {
        width: 100%;
        text-align: center;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        position: static !important;
        left: auto !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(110, 77, 152, 0.03);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 1;
        visibility: visible;
        margin-top: 5px;
        width: 100%;
        transition: max-height 0.4s ease, padding 0.4s ease;
        display: block !important;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu li {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu li a {
        font-size: 1.2rem !important;
        padding: 12px 20px;
        color: var(--text) !important;
        display: block;
        width: 100%;
        transform: none !important;
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1100; /* Aseguramos que esté por encima del menú */
    }

    /* Cuando el menú está abierto, forzamos visibilidad y posición */
    #main-nav.nav-active .mobile-menu-toggle {
        position: fixed;
        right: 30px;
        top: 30px;
        color: var(--text) !important;
    }

    .nav-logo-img {
        height: 50px; /* Logo más pequeño en móvil */
    }

    .nav-desktop-only {
        display: none !important;
    }

    .nav-actions .btn-nav {
        display: none; /* Ocultar en móvil o mover al menú */
    }

    /* Hero */
    .hero { height: auto; padding: 150px 5% 100px; flex-direction: column; background-attachment: scroll; }
    .hero h1 { 
        font-size: 2.2rem; 
        margin-top: 0;
        padding-left: 0; /* Reset del padding de escritorio */
    }
    .hero-content { 
        transform: none; 
        margin-bottom: 50px; 
        text-align: center; 
    }
    .hero-content p { 
        font-size: 1.1rem; 
        padding-left: 0; /* Reset del padding de escritorio */
    }
    
    .hero-stats-container {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-divider { display: none; }
    .stat-col { margin-bottom: 10px; }
    .stat-number { font-size: 2.2rem; height: auto; }
    .hero-stats-tagline { font-size: 1.4rem; }
    .stats-button-container { flex-direction: column; }

    /* Sections */
    .section-padding { padding: 60px 0; }
    .ways-grid { grid-template-columns: 1fr; }
    .metodo-grid { grid-template-columns: 1fr; }
    .founder-grid { grid-template-columns: 1fr; min-height: auto; }
    .founder-image { min-height: 260px; }
    .founder-text-box { padding: 34px 20px; }
    .founder-title { margin-bottom: 14px; }
    .founder-copy { font-size: 1rem; margin-bottom: 22px; }
    .btn-founder { width: 100%; text-align: center; font-size: 1.08rem; padding: 12px 18px; }
    
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .comunidad-feature-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comunidad-feature-media img {
        min-height: 300px;
    }
    
    .comparison-new-title {
        margin-bottom: 38px;
    }

    .comparison-title-light {
        font-size: clamp(1.45rem, 6.5vw, 2.05rem);
        white-space: normal;
    }

    .comparison-title-strong {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
        white-space: normal;
    }

    .comparison-table-wrapper {
        padding: 10px;
        overflow-x: visible;
    }

    .comparison-new-table {
        min-width: 0;
        width: 100%;
        border-spacing: 0 10px;
    }

    .comparison-new-table thead {
        display: none;
    }

    .comparison-new-table tbody {
        display: block;
    }

    .comparison-new-table tbody tr {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-areas:
            "feature feature feature"
            "trad plat psico";
        gap: 10px;
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.34);
        border: 1px solid rgba(255, 255, 255, 0.58);
        border-radius: 18px;
        padding: 10px;
    }

    .comparison-new-table td {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 8px;
        border-radius: 12px;
        border: none;
        background: rgba(255, 255, 255, 0.62);
        width: auto !important;
        max-width: none;
        min-width: 0;
        box-sizing: border-box;
    }

    .comparison-new-table tbody td:first-child {
        grid-area: feature;
        align-items: flex-start;
        text-align: left;
        font-size: 1rem;
        font-weight: 700;
        color: #151722;
        background: rgba(255, 255, 255, 0.78);
        width: 100% !important;
        border-radius: 12px !important;
    }

    .comparison-new-table td:nth-child(2) {
        grid-area: trad;
    }

    .comparison-new-table td:nth-child(3) {
        grid-area: plat;
    }

    .comparison-new-table tbody td:nth-child(4) {
        grid-area: psico;
        background: #ffffff;
        border: 1px solid #d7dbe3;
        width: auto !important;
        border-radius: 12px !important;
    }

    .comparison-new-table tbody td:last-child {
        border-radius: 12px !important;
    }

    .comparison-new-table td:nth-child(2)::before,
    .comparison-new-table td:nth-child(3)::before,
    .comparison-new-table td:nth-child(4)::before {
        font-size: 0.72rem;
        font-weight: 700;
        margin-bottom: 6px;
        letter-spacing: 0.02em;
    }

    .comparison-new-table td:nth-child(2)::before {
        content: "Tradicional";
        color: #5a5f6e;
    }

    .comparison-new-table td:nth-child(3)::before {
        content: "Plataformas";
        color: #5a5f6e;
    }

    .comparison-new-table td:nth-child(4)::before {
        content: "Psicovivir";
        color: #3f2369;
    }

    .comparison-new-table .fa-check,
    .comparison-new-table .fa-xmark {
        font-size: 1.12rem;
    }

    .community-header { 
        padding: 0 20px; 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
    }

    .community-title-box h2 {
        font-size: 2rem;
        line-height: 1.2;
        max-width: 100%;
    }

    .community-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
    }

    .c-stat-item {
        max-width: none;
        background: rgba(255,255,255,0.1);
        padding: 15px 10px;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .c-stat-item:last-child {
        grid-column: span 2;
    }

    .c-stat-val {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .c-stat-item p {
        font-size: 0.8rem;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    .quote-section {
        padding: 48px 0 54px;
    }

    .quote-title,
    .quote-text {
        padding: 0 14px;
    }

    .quote-title {
        margin-bottom: 10px;
    }
    
    .metodo-header { margin-left: 0; text-align: center; }
    .metodo-title { font-size: 2.2rem; }
    .metodo-subtitle { font-size: 1.8rem; }
    
    .metodo-step { flex-direction: column; text-align: center; gap: 20px; }
    .step-number { font-size: 4rem; min-width: auto; }
    .step-image-wrapper { width: 100% !important; max-width: 350px; margin: 0 auto; }
    .step-image img { height: 200px !important; }
    
    .metodo-footer-buttons { flex-direction: column; align-items: center; }
    
    .trust-grid { grid-template-columns: 1fr; }
    .trust-title { font-size: clamp(1.75rem, 8vw, 2.45rem); }
    
    .trust-card { padding: 24px 20px; min-height: auto; border-radius: 30px; }

    .trust-icon { margin-bottom: 12px; }

    .trust-card h3 { font-size: clamp(1.1rem, 5.1vw, 1.35rem); }

    .trust-card p { font-size: 0.96rem; }

    .comunidad-feature-section {
        padding: 0;
    }

    .comunidad-feature-copy {
        padding: 22px 18px;
    }

    .comunidad-feature-copy h2 strong {
        font-size: 1.14em;
    }

    .comunidad-feature-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .comunidad-feature-copy h2 {
        font-size: clamp(1.75rem, 8.2vw, 2.35rem);
    }

    .comunidad-feature-copy p {
        font-size: 1.03rem;
    }

    .comunidad-feature-media img {
        min-height: 240px;
    }
    
    .community-section {
        padding: 50px 0;
        margin: 0;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
    }

    .community-header {
        padding: 0 25px;
        margin-bottom: 40px;
    }

    .review-card {
        width: 260px;
        min-height: 180px;
        padding: 20px;
    }

    .review-card p {
        font-size: 0.9rem;
        margin-top: 20px;
    }

    .quote-icon {
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }

    @keyframes scrollInfinite {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-290px * 10)); /* 260px + 30px gap */
        }
    }
    
    .faq-title { font-size: 2.2rem; }
    .acc-header { font-size: 1.1rem; }
    
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto 25px; }
    .footer-social { justify-content: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
}

/* SECCIÓN VALIDACIÓN MÉTODO */
.metodo-validation {
    background-color: #b1b897; /* Verde oliva de fondo */
    padding: 100px 0;
}

.validation-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.validation-image-box {
    position: relative;
    z-index: 1;
    width: 45%;
}

.validation-image-shadow {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background-color: #4a4a2a; /* Sombra sólida oscura */
    border-radius: 30px;
    z-index: 1;
}

.validation-image-container {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.validation-image-container img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.validation-card {
    background-color: white;
    padding: 60px 80px;
    border-radius: 30px;
    width: 60%;
    margin-left: -8%; /* Traslape con la imagen */
    z-index: 3;
    position: relative;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.university-logo {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 80px;
}

.university-logo img {
    width: 100%;
    height: auto;
}

.validation-title {
    color: #6b5a8a; /* Morado del texto */
    font-size: 2.22rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 500px;
}

.validation-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 35px;
    max-width: 550px;
}

.validation-subtitle {
    font-size: 1.5rem;
    color: #6b5a8a;
    font-weight: 700;
    margin-bottom: 25px;
}

.validation-list {
    list-style: none;
    padding: 0;
}

.validation-list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 600;
}

.validation-list li i {
    color: #333;
    font-size: 1.1rem;
    margin-top: 4px;
}

@media (max-width: 992px) {
    .validation-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }
    .validation-image-box, .validation-card {
        width: 100%;
        margin-left: 0;
    }
    .validation-image-box {
        margin-bottom: 60px;
    }
    .validation-card {
        padding: 40px;
    }
    .university-logo {
        position: static;
        margin-bottom: 20px;
        width: 70px;
    }
    .validation-title {
        font-size: 1.8rem;
    }
}

/* SECCIÓN COMPROMISO MÉTODO - Rediseño con degradado */
.metodo-commitment {
    background: linear-gradient(135deg, #4A2F71 0%, #6B529A 50%, #8C77B3 100%) !important;
    padding: 100px 0 !important;
    text-align: center !important;
}

.metodo-commitment p {
    color: #FFFFFF !important;
    font-size: clamp(2rem, 4vw, 2.6rem) !important;
    font-weight: 500 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    font-family: 'Manrope', sans-serif !important;
    letter-spacing: -0.02em !important;
}

.metodo-commitment p .fuerte {
    font-weight: 800 !important;
    color: #FFFFFF !important;
}

@media (max-width: 768px) {
    .metodo-commitment p {
        font-size: 1.6rem;
        padding: 0 20px;
    }
}

/* SECCIÓN LOGROS MÉTODO */
/* MÉTODO LOGROS - Rediseño basado en imagen */
.metodo-logros {
    background-color: #FFFFFF !important;
    padding: 100px 0 !important;
}

.metodo-logros .logros-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 50px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.metodo-logros .logro-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.metodo-logros .logro-image-wrapper {
    position: relative !important;
    width: 100% !important;
    margin-bottom: 35px !important;
}

/* Sombra decorativa combinada (Cian a Morado) */
.metodo-logros .logro-image-wrapper::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, #5ebddf 0%, #9d72f0 100%) !important;
    border-radius: 20px !important;
    transform: translate(-15px, 15px) !important;
    z-index: 1 !important;
}

.metodo-logros .logro-image {
    position: relative !important;
    z-index: 2 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.metodo-logros .logro-image img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    display: block !important;
}

.metodo-logros .logro-title {
    font-family: 'Sora', 'Manrope', sans-serif !important;
    font-size: 1.85rem !important;
    font-weight: 800 !important;
    color: #2D1A45 !important; /* Morado muy oscuro */
    line-height: 1.2 !important;
    margin: 0 0 20px 0 !important;
    letter-spacing: -0.02em !important;
}

.metodo-logros .logro-text {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    color: #4A4A4A !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.metodo-logros .logro-text strong {
    font-weight: 800 !important;
    color: #2D1A45 !important;
}

@media (max-width: 1024px) {
    .metodo-logros .logros-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
        padding: 0 30px !important;
    }
}


.logro-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.logro-text strong {
    font-weight: 700;
    color: #434727;
}

@media (max-width: 992px) {
    .logros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logros-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .logro-title {
        font-size: 1.4rem;
    }
}


/* SECCI�N CTA FINAL M�TODO */
.metodo-cta-final {
    background-color: #B2B9A1; /* Color verde salvia basado en la imagen */
    padding: 60px 0;
    text-align: center;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-metodo-cta {
    display: inline-block;
    background: linear-gradient(90deg, #64c8ea 0%, #8c5cea 100%);
    color: #FFFFFF;
    padding: 20px 60px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(100, 200, 234, 0.3);
}

.btn-metodo-cta:hover {
    background: linear-gradient(90deg, #7ad5f2 0%, #9d72f0 100%) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(140, 92, 234, 0.4) !important;
    color: #FFFFFF !important;
}

/* SECCIÓN CTA FINAL MÉTODO - Rediseño */
.metodo-cta-final {
    background-color: #2D1A45 !important; /* Morado muy oscuro */
    padding: 100px 0 !important;
    text-align: center !important;
}

.metodo-cta-final .cta-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.metodo-cta-final .btn-metodo-cta {
    display: inline-block !important;
    background-color: #FFFFFF !important;
    color: #2D1A45 !important;
    padding: 22px 70px !important;
    border-radius: 20px !important;
    font-family: 'Sora', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: -0.02em !important;
}

@media (max-width: 768px) {
    .metodo-cta-final .btn-metodo-cta {
        font-size: 1.4rem !important;
        padding: 18px 40px !important;
        width: 85% !important;
    }
}

/* SECCION CEO ALBERTO BARRADAS - Rediseño basado en imagen */
.metodo-ceo {
    background-color: #EDF1F3 !important; /* Gris suave de la imagen */
    padding: 100px 0 !important;
}

.ceo-header {
    text-align: center !important;
    margin-bottom: 80px !important;
}

.ceo-top-title {
    font-family: 'Sora', sans-serif !important;
    color: #2D1A45 !important; /* Morado oscuro de la marca */
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.02em !important;
}

.ceo-top-subtitle {
    font-family: 'Sora', sans-serif !important;
    color: #4A2F71 !important; 
    font-size: 1.6rem !important;
    font-style: italic !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.ceo-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.1fr !important;
    gap: 60px !important;
    align-items: start !important;
}

.ceo-image img {
    width: 100% !important;
    border-radius: 0 !important; /* Imagen cuadrada según la captura */
    box-shadow: none !important;
}

.ceo-name {
    font-family: 'Sora', sans-serif !important;
    color: #2D1A45 !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 35px !important;
    letter-spacing: -0.03em !important;
}

.ceo-quote-main {
    font-family: 'Sora', sans-serif !important;
    color: #2D1A45 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    font-style: italic !important;
    line-height: 1.4 !important;
    margin-bottom: 35px !important;
}

.ceo-description p {
    font-family: 'Sora', sans-serif !important;
    color: #2D1A45 !important;
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    font-weight: 400 !important;
}

.ceo-footer-quote {
    font-family: 'Sora', sans-serif !important;
    color: #2D1A45 !important;
    font-size: 1.15rem !important;
    font-style: italic !important;
    margin-bottom: 40px !important;
    line-height: 1.4 !important;
}

.ceo-actions {
    display: flex !important;
    gap: 25px !important;
}

.btn-ceo-primary, .btn-ceo-secondary {
    display: inline-block !important;
    background-color: #2D1A45 !important;
    color: #FFFFFF !important;
    padding: 18px 45px !important;
    border-radius: 12px !important;
    font-family: 'Sora', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    flex: 1 !important;
}

.btn-ceo-primary:hover, .btn-ceo-secondary:hover {
    background-color: #4A2F71 !important;
    transform: translateY(-3px) !important;
}

@media (max-width: 992px) {
    .ceo-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .ceo-top-title {
        font-size: 2.5rem !important;
    }
    .ceo-name {
        font-size: 2.8rem !important;
    }
}

.ceo-actions {
    display: flex;
    gap: 25px;
}

.btn-ceo-primary, .btn-ceo-secondary {
    display: inline-block;
    padding: 16px 45px;
    border-radius: 8px; /* Bordes ligeramente redondeados como en la imagen */
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.btn-ceo-primary {
    text-align: center;
    color: #434727;
}

.btn-ceo-secondary {
    text-align: center;
    color: #6B529A; /* Morado para Suscribirme */
}

.btn-ceo-primary:hover, .btn-ceo-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive CEO */
@media (max-width: 1100px) {
    .ceo-grid { gap: 40px; }
    .ceo-top-title { font-size: 2.2rem; }
    .ceo-name { font-size: 2.5rem; }
}

@media (max-width: 992px) {
    .ceo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ceo-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .ceo-actions {
        justify-content: center;
    }
    .ceo-quote-main { padding-right: 0; }
}

@media (max-width: 768px) {
    .ceo-top-title { font-size: 1.8rem; }
    .ceo-actions {
        flex-direction: column;
        gap: 15px;
    }
    .btn-ceo-primary, .btn-ceo-secondary {
        width: 100%;
        text-align: center;
    }
}

/* HERO ESPECIALISTAS - NUEVA SECCI�N */
.hero-especialistas {
    background: linear-gradient(135deg, #64c8ea 0%, #8c5cea 100%); /* Verde gris�ceo de la imagen */
    padding: 180px 20px 100px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-especialistas .container {
    max-width: 1000px;
}

.hero-especialistas h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-especialistas h1 span.italic {
    font-family: 'Manrope', sans-serif;
    font-style: italic;
    font-weight: 400;
}

.hero-especialistas p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 1.4;
    max-width: 1100px;
    margin: 0 auto 50px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.btn-hero-purple {
    display: inline-block;
    background-color: #2D1A45;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.btn-hero-purple:hover {
    background-color: #974AB0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 1200px) {
    .hero-especialistas h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 992px) {
    .hero-especialistas {
        padding: 150px 20px 80px;
        min-height: auto;
    }
    .hero-especialistas h1 {
        font-size: 3.5rem;
    }
    .hero-especialistas p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-especialistas {
        padding: 120px 20px 60px;
    }
    .hero-especialistas h1 {
        font-size: 2.8rem;
    }
    .hero-especialistas p {
        font-size: 1.1rem;
    }
    .btn-hero-purple {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}

/* LISTA DE ESPECIALISTAS - GRID */
.especialistas-list {
    padding: 100px 0;
    background-color: #f8f8f8; /* Fondo ajustado según lo solicitado */
}

.especialistas-list-title {
    text-align: center;
    font-size: 3.2rem;
    color: var(--dark);
    max-width: 1000px;
    margin: 0 auto 100px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Manrope', sans-serif;
}

.especialistas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
}

.especialista-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #4A3475; /* Borde morado oscuro */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Estado inicial para la animación de scroll */
    opacity: 0;
    transform: translateX(-30px);
}

.especialista-card.is-visible {
    animation: fade-in-left 0.8s forwards ease-out;
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.especialista-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.especialista-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(107, 82, 154, 0.1);
    border-color: rgba(107, 82, 154, 0.15);
}

.especialista-card:hover::before {
    opacity: 1;
}

.especialista-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.especialista-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    padding: 4px;
    background: #fff;
    border: 1px solid rgba(107, 82, 154, 0.1);
    transition: transform 0.5s ease;
}

.especialista-card:hover .especialista-img img {
    transform: scale(1.05);
    border-color: var(--purple-light);
}

.especialista-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.especialista-info h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.especialista-info p {
    font-size: 0.85rem;
    color: var(--purple);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
    opacity: 0.9;
}

@media (max-width: 1200px) {
    .especialistas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .especialistas-list-title {
        font-size: 2.2rem;
    }
    .especialistas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .especialistas-grid {
        grid-template-columns: 1fr;
    }
    .especialista-card {
        padding: 30px 20px;
    }
    .especialistas-list-title {
        font-size: 1.8rem;
    }
}

.reveal-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.reveal-text.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.especialistas-transition {
    background: linear-gradient(90deg, #4A3475 20%, #6B529A 40%, #8E7BB3 70%); 
    padding: 60px 0;
    text-align: center;
}

.especialistas-transition p {
    color: var(--white);
    font-size: 2.7rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

.especialistas-transition p i {
    font-style: italic;
    font-weight: 400;
}

@media (max-width: 992px) {
    .especialistas-transition p {
        font-size: 2.2rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .especialistas-transition p {
        font-size: 1.8rem;
    }
}

/* ESPECIALISTAS FEATURES */
.especialistas-features {
    padding: 100px 0;
    background-color: #E6E6ED; /* Fondo gris pálido azulado como la imagen */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 80px;
}

.feature-item {
    padding: 0 40px;
    border-right: 1px solid #999; /* Bordes más visibles como en la imagen */
}

.feature-item:last-child {
    border-right: none;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    min-height: 80px; /* Asegura que todos los textos comiencen a la misma altura */
}

.feature-header h3 {
    font-size: 1.2rem;
    color: #32204F; /* Morado oscuro intenso para títulos */
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

.feature-header img {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.feature-body p {
    font-size: 1rem;
    color: #32204F;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

.features-actions {
    display: flex;
    justify-content: center;
    gap: 15rem;
    margin-top: 50px;
}

.btn-feature-purple {
    display: inline-block;
    background-color: #32214E; /* Morado muy oscuro */
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-feature-purple:hover {
    transform: translateY(-3px);
    background-color: #32214E;
}

.btn-feature-purple2 {
    display: inline-block;
    background-color: #2AB3E5; /* Celeste brillante como en la imagen */
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-feature-purple2:hover {
    transform: translateY(-3px);
    background-color: #2AB3E5;
}


.btn-feature-purple2:hover {
    background-color: var(--dark);
}

@media (max-width: 1100px) {
    .features-actions {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .feature-item {
        border-right: none;
        border-bottom: 1px solid #C4C4C4;
        padding: 0 20px 40px;
    }
    .feature-item:last-child {
        border-bottom: none;
    }
    .features-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .btn-feature-purple {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }
}

/* ESPECIALISTAS JOIN SECTION */
.especialistas-join {
    background: linear-gradient(90deg, #4A3475 20%, #6B529A 40%, #8E7BB3 70%);
    padding: 60px 0;
}

.join-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.join-text h2 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.join-text p {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
}

.btn-join-cream {
    display: inline-block;
    background-color: #EBEBEB; /* Color crema/gris muy claro del botón */
    color: var(--dark); /* Color oscuro para el texto */
    padding: 18px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.btn-join-cream:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .join-content {
        flex-direction: column;
        text-align: center;
    }
    .join-text h2 {
        font-size: 2.2rem;
    }
    .join-text p {
        font-size: 1.2rem;
    }
}

/* ESPECIALISTAS CONTACT SECTION */
.especialistas-contact {
    margin: 0;
    padding: 0;
    width: 100%;
}

.contact-container {
    display: flex;
    min-height: 600px;
    width: 100%;
}

.contact-image {
    flex: 1;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-content {
    flex: 1;
    background-color: #E6E6ED; /* Fondo gris pálido azulado como la imagen */
    display: flex;
    align-items: center;
    padding: 80px;
}

.contact-text-wrapper {
    max-width: 600px;
}

.contact-text-wrapper h2 {
    font-size: 4rem;
    color: #32204F; /* Morado oscuro intenso */
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -1px;
}

.contact-text-wrapper p {
    font-size: 1.6rem;
    color: #32204F;
    line-height: 1.4;
    margin-bottom: 50px;
    font-weight: 400;
}

.btn-contact-olive {
    display: inline-block;
    background-color: #32214E; /* Morado muy oscuro */
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-contact-olive:hover {
    transform: translateY(-3px);
    background-color: #32214E;
}


.btn-contact-olive:hover {
    background-color: var(--purple_back_1);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .contact-text-wrapper h2 {
        font-size: 3rem;
    }
    .contact-content {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-content {
        padding: 60px 20px;
        text-align: center;
    }
    .contact-text-wrapper {
        max-width: 100%;
    }
}

/* WHY PSICOVIVIR WORKS SECTION */
.why-works-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 28%),
        radial-gradient(circle at 84% 68%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 24%),
        linear-gradient(180deg, #351c58 0%, #40246a 56%, #462975 100%);
    padding: 44px 0 24px;
    color: #ffffff;
}

.why-works-title {
    margin: 0 auto 24px;
    max-width: 980px;
    text-align: center;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.55rem, 2.5vw, 2.55rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.why-works-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.6vw, 26px);
}

.why-works-card {
    background: #f1f0f4;
    color: #2f1f46;
    border-radius: 44px;
    text-align: center;
    padding: 24px 22px 22px;
    min-height: 252px;
    box-shadow: 0 12px 26px rgba(20, 10, 36, 0.16);

    /* Estado inicial para Scroll Reveal */
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animación escalonada para las tarjetas */
.why-works-card:nth-child(2) { transition-delay: 0.2s; }
.why-works-card:nth-child(3) { transition-delay: 0.4s; }

/* Clase que activa la animación cuando entra al viewport */
.why-works-card.reveal {
    opacity: 1;
    transform: translateX(0);
}

.why-works-card h3 {
    margin: 0 0 16px;
    color: #402563;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.15rem, 1.35vw, 1.7rem);
    font-weight: 700;
    line-height: 1.22;
}

.why-works-card p {
    margin: 0;
    font-size: clamp(0.96rem, 1vw, 1.22rem);
    line-height: 1.34;
}

.why-works-footer {
    margin: 20px 0 0;
    text-align: center;
    color: #ece9f3;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.25rem, 2vw, 2.2rem);
    line-height: 1.18;
}

@media (max-width: 1100px) {
    .why-works-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
        gap: 16px;
    }

    .why-works-card {
        min-height: auto;
        border-radius: 34px;
        padding: 22px 20px;
    }
}

@media (max-width: 576px) {
    .why-works-section {
        padding: 36px 0 20px;
    }

    .why-works-title {
        margin-bottom: 16px;
    }

    .why-works-card {
        border-radius: 26px;
        padding: 20px 14px;
    }

    .why-works-footer {
        margin-top: 14px;
    }
}

/* FOUNDER QUOTE BANNER */
.founder-quote-banner {
    width: 100%;
    background: linear-gradient(90deg, #5db4cc 0%, #7d64d7 100%);
    padding: 30px 18px 28px;
    text-align: center;
}

.founder-quote-text {
    margin: 0;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.45rem, 2.25vw, 2.1rem);
    line-height: 1.35;
    font-weight: 400;
}

.founder-quote-author {
    display: block;
    margin-top: 4px;
    font-size: 0.98em;
    font-weight: 400;
}

@media (max-width: 768px) {
    .founder-quote-banner {
        padding: 24px 14px 22px;
    }

    .founder-quote-text {
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .founder-quote-text {
        font-size: clamp(1.03rem, 4.9vw, 1.32rem);
    }
}

/* FIX FINAL: evitar superposición registro/footer en móvil */
@media (max-width: 768px) {
    .register-page {
        display: block !important;
        align-items: initial !important;
        min-height: auto !important;
        height: auto !important;
        padding: 0 !important;
    }

    .register-page .auth-container {
        display: block !important;
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
    }

    .register-page .auth-form-side {
        height: auto !important;
        overflow: visible !important;
        padding-bottom: 34px !important;
    }

    .register-page .auth-footer {
        margin-bottom: 14px !important;
        padding-bottom: 0 !important;
    }

    .main-footer {
        position: relative !important;
        z-index: 1 !important;
        clear: both !important;
        margin-top: 0 !important;
        padding-top: 56px !important;
    }
}

/* AUTH FORM EXTRAS: Login page refinements */
.auth-form-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-light);
    cursor: pointer;
}

.remember-me input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-form-extras {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ==========================================================================
   Checkout Purchase Section (Comunidad Psicovivir)
   ========================================================================== */
.checkout-section {
    background: #2D1A4D;
    padding: clamp(60px, 10vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.checkout-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(91, 176, 213, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(142, 123, 179, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.checkout-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 35px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-card-title {
    color: #2D1A4D;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.plus-checkout-form .form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.plus-checkout-form label {
    display: block;
    color: #4A3475;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.plus-checkout-form input, 
.plus-checkout-form select {
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    background: #f8f8fa;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    outline: none;
}

.plus-checkout-form input:focus {
    border-color: #5BB0D5;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(91, 176, 213, 0.1);
}

.form-payment-compact {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-pills-compact {
    display: flex;
    gap: 12px;
    font-size: 1.6rem;
    color: #4a3475;
    opacity: 0.8;
}

.btn-checkout-submit-compact {
    flex: 1;
    background: linear-gradient(90deg, #5BB0D5 0%, #8E7BB3 100%);
    color: #fff;
    padding: 15px 25px;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 15px rgba(91, 176, 213, 0.2);
}

.btn-checkout-submit-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(91, 176, 213, 0.3);
}

/* Right Content: Info */
.checkout-info-container {
    padding-left: 20px;
}

.checkout-info-pill {
    display: inline-block;
    background: rgba(91, 176, 213, 0.1);
    color: #5BB0D5;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.checkout-info-title {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.checkout-info-lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 45px;
    opacity: 0.9;
}

.checkout-steps {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #5BB0D5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.step-text strong {
    color: #5BB0D5;
}

.checkout-guarantee {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border-left: 6px solid #5BB0D5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.checkout-guarantee i {
    font-size: 2rem;
    color: #5BB0D5;
}

.checkout-guarantee p {
    color: #4A3475;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .checkout-card-title {
        font-size: 1.5rem;
    }
    
    .checkout-info-container {
        padding-left: 0;
          order: 2; /* Movemos el texto abajo en móvil */
          text-align: center;
      }
      
      .checkout-form-container {
          order: 1; /* Movemos el formulario arriba en móvil */
          }
    .checkout-info-title {
        font-size: 2.5rem;
    }
    
    .step-item {
        text-align: left;
    }

    .checkout-card {
        padding: 40px 30px;
    }
}

