/* =============================================
   MENTE SANA BY DR - CSS OPTIMIZADO V2
   Ajustes: Tipografía consistente, espaciado reducido
   ============================================= */

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

:root {
    /* ── COLORES ── */
    --cream:      #FAF7F5;
    --cream-alt:  #f0ece6;
    --cold:       #edf2f4;
    --dark:       #152f3a;
    --blue:       #1A4655;
    --coral:      #c97a5e;
    --text:       #1c1c1a;
    --mid:        #4a5a62;
    --sep:        #d4e3e8;
    --white:      #ffffff;

    /* ── ALIASES LEGACY (para compatibilidad con resto del CSS) ── */
    --primary:        #1A4655;
    --secondary:      #4A8B9E;
    --accent:         #c97a5e;
    --text-dark:      #1c1c1a;
    --text-medium:    #4a5a62;
    --text-light:     #4a5a62;
    --bg-cream:       #FAF7F5;
    --bg-blue:        #edf2f4;
    --bg-peach:       #f0ece6;

    /* ── TIPOGRAFÍAS ── */
    --f-display:  'Cormorant Garamond', Georgia, serif;
    --f-serif:    'Playfair Display', Georgia, serif;
    --f-sans:     'DM Sans', system-ui, sans-serif;

    /* ── ALIASES LEGACY tipografía ── */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'DM Sans', system-ui, sans-serif;

    /* ── SHADOWS ── */
    --shadow-sm: 0 2px 8px rgba(21, 47, 58, 0.06);
    --shadow-md: 0 4px 16px rgba(21, 47, 58, 0.10);
    --shadow-lg: 0 8px 32px rgba(21, 47, 58, 0.14);

    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.25;
    font-weight: 600;
    color: var(--text-dark);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* H1 HERO - SOBRESCRITURA COMPLETA DE COMPORTAMIENTO RESPONSIVE */
.hero h1 {
    white-space: normal !important;
    word-wrap: normal !important;
    overflow-wrap: normal !important;
}

.hero h1 span {
    display: block !important;
    white-space: nowrap !important;
}

@media (min-width: 769px) {
    .hero h1 {
        font-size: 2.25rem !important;
    }
}

p { font-size: 1.0625rem; line-height: 1.7; }

/* SECTIONS - ESPACIADO REDUCIDO */
section {
    padding: 1.8rem 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; }
.mt-xl { margin-top: 3rem; }

/* HEADER */
.header {
    background: var(--cream, #FAF7F5);
    border-bottom: 1px solid var(--sep, #d4e3e8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    font-family: var(--f-serif, 'Playfair Display', Georgia, serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark, #152f3a);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo .by-dr {
    font-family: var(--f-sans, 'DM Sans', sans-serif);
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--mid, #4a5a62);
    letter-spacing: 0.06em;
    font-style: italic;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-desktop a {
    font-family: var(--f-sans, 'DM Sans', sans-serif);
    color: var(--mid, #4a5a62);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    transition: color .2s;
}

.nav-desktop a:hover {
    color: var(--dark, #152f3a);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    font-family: var(--ff-d, 'DM Sans', sans-serif);
    font-size: 0.82rem;
    font-weight: 500;
    background: var(--dark, #152f3a);
    color: var(--white, #ffffff);
    border-radius: 4px;
    padding: 10px 18px;
    text-decoration: none;
    transition: background .25s;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-cta:hover {
    background: var(--coral, #c97a5e);
}

/* Teléfono discreto en header — solo desktop */
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.header-phone::before { content: none; display: none; }

.header-phone:hover {
    color: var(--primary);
}

@media (max-width: 968px) {
    .header-phone {
        display: none;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark, #152f3a);
    transition: all .25s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--cream, #FAF7F5);
    border-top: 1px solid var(--sep, #d4e3e8);
    padding: 0.75rem 1.5rem 1rem;
}

.nav-mobile.open, .nav-mobile.active { display: flex; }

.nav-mobile a {
    font-family: var(--f-sans, 'DM Sans', sans-serif);
    font-size: 0.9rem;
    color: var(--mid, #4a5a62);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--sep, #d4e3e8);
    transition: color .2s;
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile a:hover {
    color: var(--dark, #152f3a);
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--text-medium);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

/* GEO HERO */
/* === HERO SECTION (INDEX) === */
.hero {
    background: linear-gradient(135deg, #EBF5F7 0%, #FAF7F5 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(43, 91, 110, 0.12);
}

/* pseudo-elementos eliminados — hero usa gradiente controlado de 2 tonos */

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(210, 134, 108, 0.1);
    border-radius: 50px;
}

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--primary);
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: rgba(74, 139, 158, 0.08);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
}

.hero-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(26, 70, 85, 0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    text-align: center;
}

.image-frame img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(26, 70, 85, 0.15);
    border: 3px solid var(--white);
    display: block;
    margin: 0 auto 1.5rem;
}

.professional-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(26, 70, 85, 0.12);
    text-align: center;
}

.professional-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.professional-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #E67350);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

.geo-hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 50%, var(--bg-blue) 100%);
    padding: 2rem 0;
}

.geo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #E67350);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.geo-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.geo-context {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent);
}

.geo-context p {
    margin-bottom: 1rem;
}

.geo-context p:last-child {
    margin-bottom: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* BUTTONS */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--success), #20BA5A);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.cta-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.cta-primary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--success), #20BA5A);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
    max-width: 420px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

/* IDEAL CLIENT */
.ideal-client {
    padding: 1.8rem 0;
    background: var(--white);
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.ideal-card {
    background: var(--bg-cream);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.ideal-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.ideal-card ul {
    list-style: none;
    padding: 0;
}

.ideal-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.ideal-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* CLINICAL PATTERNS */
.clinical-patterns {
    padding: 1.8rem 2rem 0;
    background: var(--bg-blue);
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pattern-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.pattern-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), #E67350);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.pattern-card h3 {
    font-size: 1.125rem;
    margin: 0.75rem 0;
    color: var(--primary);
}

.pattern-quote {
    font-style: italic;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

/* NEUROPSYCH APPROACH */
.neuropsych-approach {
    padding: 1.8rem 0;
    background: var(--white);
    color: var(--text-dark);
}

.neuropsych-approach .section-title {
    color: var(--text-dark);
}

.neuropsych-approach .section-subtitle {
    color: var(--text-medium);
}

.approach-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.approach-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.level-box {
    background: var(--bg-cream);
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(43, 91, 110, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.level-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(43, 91, 110, 0.15);
}

.level-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.level-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
}

.level-box li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.level-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #D2866C;
    font-weight: bold;
    font-size: 1.1rem;
}

.approach-result {
    background: rgba(210, 134, 108, 0.1);
    padding: 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    border-left: 4px solid #D2866C;
}

/* ABOUT SECTION */
.about {
    padding: 1.8rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 320px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.credentials-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.875rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.credentials-list li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--accent);
    transform: rotate(45deg);
}

/* PRICING */
.pricing-section {
    padding: 1.8rem 0;
    background: var(--bg-cream);
}

.pricing-card {
    max-width: 600px;
    margin: 1.5rem auto 0;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.price-display {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-serif);
    line-height: 1;
}

.price-duration {
    color: var(--text-medium);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.price-note {
    color: var(--text-medium);
    margin: 1.5rem 0;
    line-height: 1.7;
}

.pricing-benefits {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(74, 139, 158, 0.05);
    border-radius: 8px;
}

.pricing-benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-benefits-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.pricing-benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 700;
    font-size: 1.25rem;
}

/* FAQ */
.faq-section {
    padding: 1.8rem 0;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    border-left: 3px solid var(--accent);
}

.faq-item summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.25rem 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 2.5rem 0;
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* FOOTER */
.footer {
    background: #152f3a;
    color: rgba(255,255,255,0.55);
    padding: 2.5rem 0 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
}

.footer-col p {
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #E0E0E0;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    
    padding-top: 1.5rem;
    text-align: left;
}

.footer-bottom p {
    color: #E0E0E0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* WHATSAPP FLOAT */
/* whatsapp-float eliminado */

/* RESPONSIVE */
@media (max-width: 968px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-image img {
        width: 280px;
        height: 350px;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 65px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .geo-hero h1 {
        font-size: 1.75rem;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        max-width: 320px;
    }
    
    .cta-primary,
    .cta-secondary,
    .cta-primary-large {
        width: 100%;
        justify-content: center;
    }
    
}

/* LOCAL CONTEXT - Para páginas geográficas */
.local-context {
    padding: 1.8rem 0;
    background: var(--bg-cream);
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.local-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

.local-card h3 {
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.local-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* HERO MAIN - Index */
.hero-main {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 50%, var(--bg-blue) 100%);
    padding: 2rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.hero-phrase {
    font-style: italic;
    font-size: 1.125rem;
    color: var(--primary);
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: rgba(210, 134, 108, 0.1);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
}

.hero-badge {
    background: linear-gradient(135deg, var(--accent), #E67350);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    margin-top: 1rem;
}

.about-text {
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.25rem;
}

.philosophy-box {
    background: rgba(74, 139, 158, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    margin-top: 1.5rem;
}

.philosophy-box h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.philosophy-box p {
    margin-bottom: 0.75rem;
}

.philosophy-box p:last-child {
    margin-bottom: 0;
}

.pricing-details {
    text-align: left;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(26, 70, 85, 0.05);
    border-radius: 12px;
}

.pricing-details h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pricing-details ul {
    list-style: none;
    padding: 0;
}

.pricing-details li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.pricing-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.testimonials {
    padding: 1.8rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial {
    background: var(--bg-cream);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: #2B5B6E;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Responsive para hero-grid */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
}

/* === PATTERNS GRID 4 COLUMNAS === */
.patterns-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

@media (max-width: 640px) {
    .patterns-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* === PRICING GRID 2 COLUMNAS === */
.pricing-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.pricing-card.premium {
    border: 2px solid var(--accent);
    position: relative;
}

.premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #E67350);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.schedule-box {
    background: rgba(74, 139, 158, 0.08);
    padding: 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--secondary);
}

.schedule-box.premium {
    background: rgba(210, 134, 108, 0.08);
    border-left: 3px solid var(--accent);
}

.schedule-box h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.schedule-time {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
}

.premium-schedule {
    list-style: none;
    padding: 0;
}

.premium-schedule li {
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cta-primary-large.premium {
    background: linear-gradient(135deg, var(--accent), #E67350);
}

.cta-primary-large.premium:hover {
    box-shadow: 0 8px 32px rgba(210, 134, 108, 0.4);
}

/* === FOOTER UPDATES === */
.footer-bottom {
    
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-legal strong {
    color: var(--white);
}

.footer-professional {
    text-align: center;
}

.footer-professional p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.professional-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.professional-social a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.professional-social a:hover {
    color: var(--white);
}

.professional-social span {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 968px) {
    .pricing-grid-two {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-bottom {
        text-align: left;
    }
    
    .professional-social {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .professional-social span {
        display: none;
    }
}

/* ===================================================
   NUEVOS ESTILOS PARA INDEX.HTML
   ================================================== */

/* Patrones Clínicos Grid 2x4 */
.patterns-grid-2x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.pattern-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26, 70, 85, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pattern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(26, 70, 85, 0.15);
}

.pattern-number {
    background: linear-gradient(135deg, var(--accent), #E67350);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.pattern-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pattern-card h3 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1.3;
    flex: 1;
}

.pattern-quote {
    font-style: italic;
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.pattern-card > p:last-child {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Neuropsych Approach */
.neuropsych-approach {
    background: var(--white);
    padding: 3rem 0;
    color: var(--text-dark);
}

.approach-intro {
    font-size: 1.25rem;
    color: var(--primary);
    text-align: center;
    margin-top: 1rem;
}

.approach-levels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.level-box {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(43, 91, 110, 0.15);
}

.level-box h4 {
    color: var(--primary);
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.level-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.level-box li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.level-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #D2866C;
    font-weight: 700;
}

.approach-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(210, 134, 108, 0.1);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    border-left: 4px solid #D2866C;
}

/* Pricing Grid Two Columns */
.pricing-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(26, 70, 85, 0.12);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(26, 70, 85, 0.18);
}

.pricing-card h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-display {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-serif);
    line-height: 1;
}

.price-duration {
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.price-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-details {
    background: rgba(74, 139, 158, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.pricing-details h4 {
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.pricing-details p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-buttons {
    margin-top: 1.5rem;
}

.cta-primary-large {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.cta-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Patterns 2x4 */
@media (max-width: 1200px) {
    .patterns-grid-2x4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .patterns-grid-2x4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-levels {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .patterns-grid-2x4 {
        grid-template-columns: 1fr;
    }
    
    .pattern-card h3 {
        font-size: 1.05rem;
    }
}

/* Footer 5 Columnas - Todas alineadas arriba */
.footer-grid-five {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: start;
    justify-content: space-between;
}

.footer-grid-five .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid-five .footer-col h3,
.footer-grid-five .footer-col h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.footer-grid-five .footer-col p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-grid-five .footer-col ul li {
    margin-bottom: 0.75rem;
}

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

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

@media (max-width: 480px) {
    .footer-grid-five {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   OPTIMIZACIÓN DE ESPACIADO - SECCIONES COMPACTAS
   ================================================== */

/* Hero más compacto */
.hero {
    padding: 3.5rem 0 !important;
}

.hero-container {
    gap: 2.5rem !important;
}

.hero-content h1 {
    margin-bottom: 1.25rem !important;
}

.hero-subtitle {
    margin-bottom: 1.5rem !important;
}

.hero-features {
    margin-bottom: 1.5rem !important;
}

/* About section más compacta */
.about {
    padding: 4rem 0 !important;
}

.about-content {
    gap: 2.5rem !important;
}

.about .section-header {
    margin-bottom: 1.5rem !important;
}

.about-image img {
    margin-bottom: 1.25rem !important;
}

.credentials-list {
    margin-top: 1.25rem !important;
}

.credentials-list li {
    margin-bottom: 0.65rem !important;
    padding: 0.4rem 0 !important;
}

.about-text p {
    margin-bottom: 1.25rem !important;
}

.philosophy-box {
    margin-top: 1.5rem !important;
    padding: 1.25rem !important;
}

.philosophy-box p {
    margin-bottom: 0.75rem !important;
}

/* Todas las secciones - padding vertical consistente */
section {
    padding: 4rem 0 !important;
}

.section-container {
    padding: 0 2.5rem !important;
}

.section-header {
    margin-bottom: 1.5rem !important;
}

.section-title {
    margin-bottom: 1rem !important;
}

/* Clinical patterns más compacto */
.clinical-patterns {
    padding: 4rem 0 !important;
}

.patterns-grid-2x4 {
    gap: 1.25rem !important;
    margin-top: 1.5rem !important;
}

.pattern-card {
    padding: 1.5rem !important;
}

/* Neuropsych approach más compacto */
.neuropsych-approach {
    padding: 4rem 0 !important;
}

.approach-levels {
    margin-top: 1.5rem !important;
    gap: 1.5rem !important;
}

.level-box {
    padding: 1.75rem !important;
}

/* Pricing más compacto */
.pricing-section {
    padding: 4rem 0 !important;
}

.pricing-grid-two {
    margin: 1.5rem auto 0 !important;
    gap: 1.75rem !important;
}

.pricing-card {
    padding: 2rem !important;
}

/* Testimonials más compacto */
.testimonials {
    padding: 4rem 0 !important;
}

.testimonials-grid {
    gap: 1.5rem !important;
}

.testimonial {
    padding: 1.75rem !important;
}

/* FAQ más compacto */
.faq-section {
    padding: 4rem 0 !important;
}

.faq-grid {
    gap: 1rem !important;
    margin-top: 1.5rem !important;
}

.faq-item {
    margin: 0.3rem 0 !important;
}

.faq-item summary {
    padding: 0.6rem 0 0.6rem 1rem !important;
}

.faq-item p {
    padding: 0.35rem 0 0.6rem 1rem !important;
}

/* Footer más compacto */
.footer {
    padding: 2.5rem 0 1.75rem !important;
}

.footer-grid-five {
    margin-bottom: 1.5rem !important;
}

.footer-bottom {
    padding-top: 1.5rem !important;
}

/* Final CTA más compacto */
.final-cta {
    padding: 2.5rem 0 !important;
}

.final-cta h2 {
    margin-bottom: 0.75rem !important;
}

.final-cta p {
    margin-bottom: 1.25rem !important;
}

/* About Section - Rediseño sin imagen */
.about-content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.credentials-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    background: rgba(74, 139, 158, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
}

.credentials-list-horizontal li {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(26, 70, 85, 0.08);
}

.about-text-centered {
    text-align: left;
}

.about-text-centered p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .credentials-list-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .credentials-list-horizontal li {
        width: 100%;
        text-align: center;
    }
}

/* Reducir espacios en blanco generales */
.about {
    padding: 4rem 0 !important;
}

.testimonials {
    padding: 4rem 0 !important;
}

.pricing-section {
    padding: 4rem 0 !important;
}

.faq-section {
    padding: 4rem 0 !important;
}

/* Optimización adicional de espaciado */
.clinical-patterns {
    padding: 4rem 0 !important;
}

.neuropsych-approach {
    padding: 4rem 0 !important;
}

/* Hero más compacto */
.hero {
    padding: 3.5rem 0 !important;
}

.hero-container {
    gap: 2rem !important;
}

/* Section headers más compactos */
.section-header {
    margin-bottom: 1.5rem !important;
}

.section-title {
    margin-bottom: 1rem !important;
}

/* Approach levels más compacto */
.approach-levels {
    gap: 1.5rem !important;
}

.level-box {
    padding: 1.75rem !important;
}

/* Pricing más compacto */
.pricing-grid-two {
    gap: 2rem !important;
    margin-top: 1.5rem !important;
}

.pricing-card {
    padding: 2rem !important;
}

/* Pattern cards más compactas */
.patterns-grid-2x4 {
    gap: 1.25rem !important;
}

.pattern-card {
    padding: 1.5rem !important;
}

/* Testimonials grid más compacto */
.testimonials-grid {
    gap: 1.5rem !important;
}

/* FAQ más compacto */
.faq-grid {
    gap: 1rem !important;
}

/* ===================================================
   AJUSTES FINALES OPTIMIZADOS - MENTE SANA BY DR
   ================================================== */

/* ===================================================
   HERO - CREDENCIALES INCORPORADAS
   ================================================== */
.professional-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(26, 70, 85, 0.15);
    text-align: center;
    max-width: 400px;
}

.professional-card h3 {
    font-size: 1.75rem;
    color: #1A4655;
    margin-bottom: 0.75rem;
}

.professional-card p {
    color: #4A8B9E;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D2866C, #E09C80);
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.credentials-compact {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.credentials-compact li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2c3e50;
    font-size: 0.9rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(74, 139, 158, 0.1);
}

.credentials-compact li:last-child {
    border-bottom: none;
}

.credentials-compact li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #D2866C;
    font-size: 0.7rem;
}

/* ===================================================
   ABOUT SECTION - LAYOUT HORIZONTAL (FOTO IZQUIERDA)
   ================================================== */
.about-layout-horizontal {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.about-left-column {
    display: flex;
    flex-direction: column;
}

.about-left-column img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(26, 70, 85, 0.15);
}

.about-right-column {
    padding-top: 0;
}

.about-right-column p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #2c3e50;
    font-size: 1.05rem;
}

.about-right-column .philosophy-box {
    background: linear-gradient(135deg, rgba(74, 139, 158, 0.08), rgba(74, 139, 158, 0.03));
    border-left: 4px solid #1A4655;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.about-right-column .philosophy-box h4 {
    color: #1A4655;
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.about-right-column .philosophy-box p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-right-column .philosophy-box p:last-child {
    margin-bottom: 0;
}

/* Credenciales debajo de philosophy box - 2 filas horizontales con color */
.credentials-below-philosophy {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential-row {
    color: #1A4655;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

.credential-row:first-child {
    font-weight: 600;
}

/* About section spacing */
.about {
    padding: 3rem 0;
}

/* Destacar elementos en about section */
.about-right-column p strong {
    color: #1A4655;
}

.about-right-column .philosophy-box {
    background: linear-gradient(135deg, rgba(74, 139, 158, 0.12), rgba(74, 139, 158, 0.06));
    border-left: 5px solid #1A4655;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 16px rgba(26, 70, 85, 0.08);
}

.about-right-column .philosophy-box h4 {
    color: #1A4655;
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.about-right-column .philosophy-box p strong {
    color: #D2866C;
}

/* ===================================================
   WHATSAPP FLOTANTE - VERDE CON BLANCO
   ================================================== */
/* ===================================================
   FOOTER - 5 COLUMNAS EQUIDISTANTES
   ================================================== */
.footer-grid-five {
    gap: 3.5rem !important;
}

/* ===================================================
   RESPONSIVE - ABOUT HORIZONTAL
   ================================================== */
@media (max-width: 968px) {
    .about-layout-horizontal {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-left-column {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .professional-card {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .credentials-compact {
        font-size: 0.85rem;
    }
    
    .credentials-compact li {
        padding: 0.5rem 0 0.5rem 1.25rem;
    }
    
    .about-left-column {
        max-width: 100%;
    }
    
    .about-right-column p {
        font-size: 1rem;
    }
    
    .credential-row {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}
/* =============================================
   ESTILOS ADICIONALES PARA INDEX OPTIMIZADO
   Nuevas secciones: hero-hook, qualifier, etc.
   ============================================= */

/* HERO UPDATES */
.hero-subtitle-h2 {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font-sans);
    font-weight: 400;
}

.hero-hook {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-hook strong {
    color: var(--primary);
    font-weight: 700;
    font-style: normal;
}

.hero-note {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-medium);
}

/* QUALIFIER SECTION */
.qualifier-section {
    padding: 3rem 0;
    background: var(--bg-cream);
}

.qualifier-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.qualifier-column {
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qualifier-column-positive {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(37, 211, 102, 0.04) 100%);
    border: 2px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
    font-weight: 500;
}

.qualifier-column-positive:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.qualifier-column-negative {
    background: rgba(229, 57, 53, 0.02);
    border: 1px solid rgba(229, 57, 53, 0.15);
    opacity: 0.85;
}

.qualifier-column-title {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    font-family: var(--font-serif);
    font-weight: 700;
}

.qualifier-column-positive .qualifier-column-title {
    color: #1B8E52;
}

.qualifier-column-negative .qualifier-column-title {
    color: #C62828;
    font-weight: 600;
}

.qualifier-column-list {
    list-style: none;
    padding: 0;
}

.qualifier-column-list li {
    padding: 1rem 0;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.qualifier-column-positive .qualifier-column-list li {
    font-weight: 500;
}

.qualifier-icon {
    font-size: 1.75rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 0;
    line-height: 1;
}

.qualifier-icon-check {
    color: #25D366;
    text-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
}

.qualifier-icon-x {
    color: #E53935;
}

.qualifier-content-direct {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.qualifier-title-main {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-family: var(--font-serif);
    text-align: center;
}

.qualifier-title-direct {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-serif);
}

.qualifier-list-direct {
    list-style: none;
    padding: 0;
    text-align: left;
}

.qualifier-list-direct li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.qualifier-list-direct li:last-child {
    border-bottom: none;
}

.qualifier-list-direct li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

.qualifier-grid-single {
    max-width: 700px;
    margin: 2rem auto 0;
}

.qualifier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.qualifier-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.qualifier-box.ideal {
    border-top: 4px solid var(--success);
}

.qualifier-box.not-for {
    border-top: 4px solid #E53E3E;
}

.qualifier-box h3 {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

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

.qualifier-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.qualifier-list li:last-child {
    border-bottom: none;
}

.qualifier-box.ideal .qualifier-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.125rem;
}

.qualifier-box.not-for .qualifier-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #E53E3E;
    font-weight: 700;
    font-size: 1.125rem;
}

/* PATTERN BULLETS */
.pattern-bullets {
    list-style: none;
    padding: 0;
    margin-top: 0.75rem;
}

.pattern-bullets li {
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.pattern-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* PATTERNS ACCORDION */
.patterns-accordion {
    max-width: 900px;
    margin: 2rem auto 0;
}

.patterns-accordion-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.patterns-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pattern-accordion-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.pattern-accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.pattern-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.pattern-accordion-header::-webkit-details-marker {
    display: none;
}

.pattern-accordion-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

details[open] .accordion-icon {
    transform: rotate(0deg);
}

.pattern-accordion-content {
    padding: 0 1.75rem 1.5rem;
}

.pattern-quote {
    font-style: italic;
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
}

/* RESPONSIVE - QUALIFIER */
@media (max-width: 768px) {
    .qualifier-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .qualifier-grid-single {
        max-width: 100%;
    }
    
    .qualifier-two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .qualifier-column {
        padding: 2rem 1.5rem;
    }
    
    .qualifier-column-title {
        font-size: 1.375rem;
    }
    
    .qualifier-column-list li {
        font-size: 1.0625rem;
        padding: 0.875rem 0;
        gap: 0.875rem;
    }
    
    .qualifier-icon {
        font-size: 1.5rem;
    }
    
    .qualifier-content-direct {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .qualifier-title-main {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .qualifier-title-direct {
        font-size: 1.25rem;
    }
    
    .qualifier-list-direct li {
        font-size: 1rem;
        padding: 0.75rem 0;
        padding-left: 1.75rem;
    }
    
    .qualifier-box {
        padding: 1.5rem;
    }
    
    .qualifier-box h3 {
        font-size: 1.25rem;
    }
    
    .qualifier-list li {
        font-size: 1rem;
        padding: 0.625rem 0;
        padding-left: 1.5rem;
    }
    
    .patterns-accordion-two-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pattern-accordion-header {
        padding: 1.25rem 1.25rem;
    }
    
    .pattern-accordion-header h3 {
        font-size: 1.125rem;
    }
    
    .pattern-accordion-content {
        padding: 0 1.25rem 1.25rem;
    }
}

/* HERO RESPONSIVE UPDATES */
@media (max-width: 768px) {
    .hero-hook {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

/* NEUROPSYCH APPROACH - ADDITIONAL STYLES */
.neuropsych-approach {
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem 0;
}

.neuropsych-approach .section-title {
    color: var(--text-dark);
}

.approach-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.95);
}

.approach-levels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.level-box {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(43, 91, 110, 0.15);
}

.level-box h4 {
    color: var(--primary);
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.level-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-box li {
    padding: 0.625rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.level-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D2866C;
    font-weight: 700;
}

.approach-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(210, 134, 108, 0.1);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    border-left: 4px solid #D2866C;
}

/* RESPONSIVE - NEUROPSYCH APPROACH */
@media (max-width: 768px) {
    .approach-levels {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .level-box {
        padding: 1.5rem;
    }
    
    .level-box h4 {
        font-size: 1.25rem;
    }
}

/* VARIABLE OVERRIDES FOR NEW STRUCTURE */
:root {
    --coral: #D2866C;
    --text-primary: var(--text-dark);
    --bg-light: #FAF7F5;
}

/* ============================================================
   RESPONSIVE: Imagen Dra. Daniela en hero
   ============================================================ */
@media (max-width: 768px) {
    .hero-content[style*="display: flex"] {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center;
    }
}


/* ===== responsive-fixes.css (merged) ===== */
/* =============================================
   RESPONSIVE MOBILE - MENTE SANA BY DR
   VERSIÓN FUNCIONAL - Feb 17, 2026
   ============================================= */

/* ===== RESET Y BASE ===== */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    html, body {
        max-width: 100vw !important;
        width: 100% !important;
    }
}

/* ===== HERO SECTION ===== */
@media (max-width: 768px) {
    /* Contenedor hero: stack vertical */
    .hero > .hero-container > .hero-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    /* Imagen perfil */
    .hero img[alt*="Daniela"],
    .hero img[src*="DanielaRozo"] {
        width: 140px !important;
        height: 140px !important;
        margin: 0 auto 1rem !important;
    }
    
    /* H1 */
    .hero h1 {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }
    
    /* Párrafo debajo H1 */
    .hero h1 + p {
        font-size: 0.95rem !important;
        text-align: center !important;
    }
}

/* ===== SECCIONES GENERALES ===== */
@media (max-width: 768px) {
    section {
        padding: 2rem 1.25rem !important;
    }
    
    .section-container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

/* ===== TÍTULOS ===== */
@media (max-width: 768px) {
    h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    /* Sección "Reconoces algunos de estos patrones" */
    section[style*="background: #FAF7F5"] h2,
    section[style*="background: linear-gradient"] h2 {
        font-size: 1.4rem !important;
        padding: 0 0.5rem !important;
    }
}

/* ===== TARJETAS Y BLOQUES ===== */
@media (max-width: 768px) {
    /* Tarjetas de patrones */
    div[style*="border-left: 4px solid"],
    div[style*="border-left: 3px solid"],
    div[style*="border: 2px solid"] {
        margin-bottom: 1.25rem !important;
        padding: 1.25rem !important;
        width: 100% !important;
    }
    
    /* Artículos blog */
    article {
        padding: 1.25rem !important;
    }
    
    article > a > div {
        padding: 1.25rem !important;
    }
}

/* ===== GRIDS: FORZAR 1 COLUMNA ===== */
@media (max-width: 768px) {
    /* Cualquier grid */
    div[style*="grid-template-columns"] {
        display: block !important;
    }
    
    div[style*="grid-template-columns"] > * {
        margin-bottom: 1.5rem !important;
    }
    
    /* Grids específicos */
    div[style*="display: grid"] {
        display: block !important;
    }
}

/* ===== FLEXBOX: STACK VERTICAL ===== */
@media (max-width: 768px) {
    /* Stats cards y similares */
    div[style*="display: flex"][style*="gap: 1.5rem"],
    div[style*="display: flex"][style*="gap: 2rem"] {
        display: block !important;
    }
    
    div[style*="display: flex"] > div[style*="flex: 1"] {
        margin-bottom: 1.5rem !important;
    }
}

/* ===== STATS CARDS ===== */
@media (max-width: 768px) {
    /* Números grandes */
    div[style*="font-size: 2.5rem"],
    div[style*="font-size: 3rem"] {
        font-size: 1.8rem !important;
    }
    
    /* Contenedor stats */
    div[style*="border-left"][style*="padding: 2rem"] {
        padding: 1.25rem !important;
        display: block !important;
        width: 100% !important;
        margin-bottom: 1.25rem !important;
    }
}

/* ===== PROGRAMA AVANZADO ===== */
@media (max-width: 768px) {
    /* Pricing cards */
    div[style*="border-radius: 16px"][style*="padding: 2.5rem"] {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Badge "MÁS COMPLETO" */
    div[style*="MÁS COMPLETO"] {
        font-size: 0.75rem !important;
        padding: 0.35rem 1rem !important;
    }
}

/* ===== TESTIMONIOS ===== */
@media (max-width: 768px) {
    /* Estrellas + texto */
    div[style*="font-style: italic"] {
        padding: 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Nombre testimonio */
    div[style*="font-style: italic"] + div {
        font-size: 0.85rem !important;
    }
}

/* ===== SOBRE DANIELA ===== */
@media (max-width: 768px) {
    /* Sección sobre Daniela */
    section#sobre-daniela img {
        width: 180px !important;
        height: auto !important;
        margin: 0 auto 1rem !important;
    }
    
    /* Texto sobre Daniela */
    section#sobre-daniela h3 {
        font-size: 1.1rem !important;
        text-align: center !important;
    }
    
    section#sobre-daniela p {
        font-size: 0.95rem !important;
        text-align: left !important;
    }
}

/* ===== FOOTER ===== */
@media (max-width: 768px) {
    .footer-top {
        display: block !important;
    }
    
    .footer-top > div {
        margin-bottom: 2rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.8rem !important;
        line-height: 1.6 !important;
    }
}

/* ===== BOTONES ===== */
@media (max-width: 768px) {
    /* CTA principal */
    a[style*="background: linear-gradient"][style*="padding"] {
        display: block !important;
        width: 90% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        padding: 0.85rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Header WhatsApp */
    .header-cta {
        font-size: 0.75rem !important;
        padding: 0.55rem 0.9rem !important;
        white-space: nowrap !important;
    }
}

/* ===== NAVEGACIÓN ===== */
@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 1rem !important;
        gap: 0.5rem !important;
    }
    
    .logo {
        font-size: 1.05rem !important;
    }
    
    .nav-mobile {
        width: 100% !important;
        left: 0 !important;
        padding: 1rem !important;
    }
}

/* ===== BLOG INDEX ===== */
@media (max-width: 768px) {
    /* Hero blog */
    .hero[style*="background: linear-gradient"] {
        padding: 2rem 1.25rem !important;
    }
    
    /* Grid artículos */
    div[style*="grid-template-columns: repeat(2"] {
        display: block !important;
    }
}

/* ===== CTA FINAL ===== */
@media (max-width: 768px) {
    section[style*="background: linear-gradient(135deg, #1A4655"] {
        padding: 2rem 1.25rem !important;
    }
    
    section[style*="background: linear-gradient"] h2 {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    section[style*="background: linear-gradient"] p {
        font-size: 0.9rem !important;
    }
}

/* ===== TEXT ALIGNMENT ===== */
@media (max-width: 768px) {
    /* Títulos centrados */
    section h2 {
        text-align: center !important;
    }
    
    /* Párrafos y listas a la izquierda */
    section p,
    section ul,
    section li {
        text-align: left !important;
    }
}

/* ===== IMÁGENES ===== */
@media (max-width: 768px) {
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Imágenes circulares */
    img[style*="border-radius: 50%"] {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ===== BREADCRUMB ===== */
@media (max-width: 768px) {
    div[style*="background: #FAF7F5"][style*="padding: 1rem"] {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.8rem !important;
    }
}

/* ===== DETAILS/SUMMARY (FAQs) ===== */
@media (max-width: 768px) {
    details {
        margin-bottom: 0.75rem !important;
    }
    
    summary {
        font-size: 0.95rem !important;
        padding: 0.75rem !important;
    }
}

/* ===== CORRECCIÓN: ELEMENTOS ESPECÍFICOS ===== */
@media (max-width: 768px) {
    /* Forzar ancho completo en contenedores */
    [style*="max-width: 1200px"],
    [style*="max-width: 1100px"],
    [style*="max-width: 900px"],
    [style*="max-width: 800px"],
    [style*="max-width: 700px"] {
        max-width: 100% !important;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

/* ===== SMARTPHONE PEQUEÑO ===== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem !important;
    }
    
    h2 {
        font-size: 1.25rem !important;
    }
    
    section {
        padding: 1.5rem 1rem !important;
    }
}


/* ── SISTEMA TIPOGRÁFICO DEFINITIVO ──────────────────────────
   Cormorant Garamond: H1, precios grandes, impacto visual
   Playfair Display: H2, H3, títulos de sección, quotes
   DM Sans: body, botones, labels, metadata
   ─────────────────────────────────────────────────────────── */
h1, .h1 {
    font-family: var(--f-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}
h2, .h2 {
    font-family: var(--f-serif);
    font-weight: 700;
}
h3, .h3 {
    font-family: var(--f-serif);
    font-weight: 600;
}
body, p, span, a, button, input, label {
    font-family: var(--f-sans);
}
/* Precios en itálica Cormorant */
.price-display, .precio-grande, .horario-price-num {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
}
/* Coral solo para conversión y acento — nunca decorativo */
.coral, .cta-primary, .btn-agendar {
    background: var(--coral);
    color: var(--white);
}

/* ============================================================
   Línea 3 — Acompañamiento Individual (añadido 2026-03-20)
   ============================================================ */
:root { --sage: #7A8B72; }

/* Footer 6 columnas */
.footer-grid-six {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

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