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

/* ============================================================
   RAÍCES - Estilos del Sitio
   ============================================================ */

:root {
    --color-primary: #7ab6a3;
    --color-secondary: #f6f4f0;
    --color-text: #0d1b1e;
    --color-accent: #e8a87c;
    --color-dark-green: #2d4a43;
    --color-dark: #0d1b1e;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  max-width: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    background-color: var(--color-secondary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================================
   UTILIDADES
   ============================================================ */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 5rem;
    }
}

.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.bg-primary { background-color: var(--color-primary); }
.bg-accent { background-color: var(--color-accent); }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--color-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(122, 182, 163, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--color-dark-green);
}

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

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

.btn-accent:hover {
    background-color: #d4976b;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ============================================================
   NAVEGACIÓN
   ============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(246, 244, 240, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.navbar-logo {
    flex-shrink: 1;
    max-width: 70%;
    min-width: 0;
}

.navbar-logo img {
    height: 2rem;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .navbar-logo img {
        height: 2.5rem;
    }
}

.navbar.scrolled .navbar-logo img {
    height: 1.8rem;
}

.navbar-nav {
    display: none !important;
}

@media (min-width: 1024px) {
    .navbar-nav {
        display: flex !important;
        align-items: center;
        gap: 2rem;
    }
}

.navbar-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    transition: color 0.3s ease;
}

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

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav a:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

.navbar-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-text);
    margin-right: 0.5rem;
}

.navbar-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 1024px) {
    .navbar-menu-btn {
        display: none;
    }
}

/* Menú móvil */
.navbar-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(246, 244, 240, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.navbar-mobile.active {
    display: block;
}

.navbar-mobile .container {
    display: flex;
    flex-direction: column;
}

.navbar-mobile a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 600;
    color: var(--color-text);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-mobile a:hover {
    background-color: rgba(122, 182, 163, 0.1);
    color: var(--color-primary);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(246, 244, 240, 0.95), rgba(246, 244, 240, 0.7), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    height: 6rem;
}

@media (min-width: 640px) {
    .hero-logo img {
        height: 7rem;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(122, 182, 163, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
}

@media (min-width: 1280px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.9);
    max-width: 600px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.8);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-meta svg {
    color: var(--color-primary);
    width: 1rem;
    height: 1rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-social span {
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.7);
}

.hero-social a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Stats Card */
.stats-card {
    display: none;
}

@media (min-width: 1024px) {
    .stats-card {
        display: block;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 1.5rem;
        padding: 2rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        max-width: 400px;
        margin-left: auto;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.8);
    margin-top: 0.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator-inner {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-primary);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 6px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 9999px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */

.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(122, 182, 163, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

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

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   INTRODUCCIÓN
   ============================================================ */

.intro-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(122, 182, 163, 0.2);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .intro-card {
        padding: 4rem 3rem;
    }
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .intro-card h2 {
        font-size: 2.5rem;
    }
}

.intro-card p {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.intro-card p:last-of-type {
    color: rgba(13, 27, 30, 0.8);
}

.highlight {
    position: relative;
    display: inline;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(122, 182, 163, 0.3);
    z-index: -1;
}

.intro-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.intro-badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.intro-badge.primary {
    background-color: var(--color-primary);
}

.intro-badge.accent {
    background-color: var(--color-accent);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(122, 182, 163, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.6;
}

/* ============================================================
   SERVICIOS
   ============================================================ */

.services-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1024px) {
    .services-scroll {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        margin: 0;
        padding: 0;
        overflow-x: visible;
    }
}

.service-card {
    flex-shrink: 0;
    width: 280px;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

@media (min-width: 1024px) {
    .service-card {
        width: auto;
    }
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.8);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link svg {
    width: 1rem;
    height: 1rem;
}

.services-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.5);
}

@media (min-width: 1024px) {
    .services-hint {
        display: none;
    }
}

.services-hint svg {
    animation: bounce 2s infinite;
}

/* ============================================================
   PRECIOS DESTACADOS
   ============================================================ */

.precio-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.precio-fecha {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.precio-valor {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.precio-general {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.precio-general small {
    font-size: 0.7rem;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.precio-preferencial {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e8a87c;
    background: rgba(232, 168, 124, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

.precio-tag {
    font-size: 0.75rem;
    color: white;
    background: var(--color-primary);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.precio-nota {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Precio en servicios */
.service-precio {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

/* ============================================================
   POLÍTICAS DE ATENCIÓN
   ============================================================ */

.politicas-section {
    background: rgba(122, 182, 163, 0.15);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.politicas-section h3 {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.politicas-section h3 svg {
    color: white;
}

.politicas-section p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    white-space: pre-line;
}

/* ============================================================
   TDAH BANNER
   ============================================================ */

.tdah-banner {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .tdah-banner {
        padding: 12rem 0;
    }
}

.tdah-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tdah-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tdah-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 47, 42, 0.95), rgba(45, 74, 67, 0.85), rgba(45, 74, 67, 0.7));
    z-index: 1;
}

.tdah-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.tdah-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-primary);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tdah-content h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .tdah-content h2 {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .tdah-content h2 {
        font-size: 6rem;
    }
}

.tdah-subtitle {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .tdah-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tdah-subtitle {
        font-size: 1.75rem;
    }
}

.tdah-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tdah-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================================
   PROFESIONALES
   ============================================================ */

.profesionales-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .profesionales-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .profesionales-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.profesional-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.profesional-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.profesional-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.profesional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.profesional-card:hover .profesional-image img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.profesional-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 30, 0.9), rgba(13, 27, 30, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.profesional-card:hover .profesional-overlay {
    opacity: 1;
}

.profesional-credenciales {
    color: white;
}

.profesional-credenciales-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.profesional-credenciales ul {
    list-style: none;
}

.profesional-credenciales li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.profesional-credenciales li::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.profesional-info {
    padding: 1.5rem;
}

.profesional-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.profesional-rol {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.profesional-desc {
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.profesional-btn {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.profesional-btn:hover {
    background-color: var(--color-primary);
    color: white;
}

/* ============================================================
   ACORDEÓN DE CURRÍCULUM (Profesionales)
   ============================================================ */

.profesional-accordion {
    margin-bottom: 1rem;
}

.accordion-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(122, 182, 163, 0.1);
    border: none;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.accordion-btn:hover {
    background-color: rgba(122, 182, 163, 0.2);
}

.accordion-btn[aria-expanded="true"] {
    background-color: var(--color-primary);
    color: white;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-content {
    background-color: rgba(122, 182, 163, 0.05);
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1rem;
    margin-top: 0.25rem;
    animation: accordionSlide 0.3s ease;
}

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

.accordion-section {
    margin-bottom: 1rem;
}

.accordion-section:last-child {
    margin-bottom: 0;
}

.accordion-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accordion-section-title svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

.accordion-list {
    list-style: none;
    padding-left: 1.25rem;
}

.accordion-list li {
    font-size: 0.8rem;
    color: rgba(13, 27, 30, 0.8);
    margin-bottom: 0.35rem;
    position: relative;
    padding-left: 0.75rem;
    line-height: 1.4;
}

.accordion-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.accordion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding-left: 1.25rem;
}

.accordion-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    background-color: rgba(122, 182, 163, 0.15);
    color: var(--color-dark-green);
    border-radius: 9999px;
    font-weight: 500;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */

.testimonios-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.testimonio-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

@media (min-width: 640px) {
    .testimonio-card {
        padding: 4rem 3rem;
    }
}

.testimonio-quote-icon {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonio-quote-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.testimonio-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonio-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--color-accent);
    color: var(--color-accent);
}

.testimonio-texto {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .testimonio-texto {
        font-size: 1.25rem;
    }
}

.testimonio-autor h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonio-autor p {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
}

.testimonio-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonio-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid rgba(122, 182, 163, 0.3);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonio-nav-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.testimonio-nav-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.testimonio-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonio-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background-color: rgba(122, 182, 163, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonio-dot.active {
    background-color: var(--color-primary);
    width: 2rem;
}

.testimonio-dot:hover {
    background-color: rgba(122, 182, 163, 0.5);
}

/* ============================================================
   NOVEDADES
   ============================================================ */

.novedades-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .novedades-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.novedades-nav {
    display: flex;
    gap: 0.5rem;
}

.novedades-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.novedades-scroll::-webkit-scrollbar {
    display: none;
}

.novedad-card {
    flex-shrink: 0;
    width: 320px;
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.novedad-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.novedad-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.novedad-fecha {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.6);
    margin-bottom: 0.75rem;
}

.novedad-fecha svg {
    width: 1rem;
    height: 1rem;
}

.novedad-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.novedad-card p {
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.6;
}

/* ============================================================
   NEURODIVERGENCIAS
   ============================================================ */

.neuro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .neuro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.neuro-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .neuro-content h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .neuro-content h2 {
        font-size: 3rem;
    }
}

.neuro-content > p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.neuro-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .neuro-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.neuro-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(13, 27, 30, 0.8);
}

.neuro-feature::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.neuro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.neuro-stat {
    background-color: white;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.neuro-stat svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-primary);
    margin: 0 auto 0.5rem;
}

.neuro-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.neuro-stat-label {
    font-size: 0.75rem;
    color: rgba(13, 27, 30, 0.6);
}

.neuro-image {
    position: relative;
}

.neuro-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.neuro-image::before {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background-color: rgba(122, 182, 163, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.neuro-image::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(232, 168, 124, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.neuro-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.neuro-badge-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.neuro-badge-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.neuro-badge h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.neuro-badge p {
    font-size: 0.75rem;
    color: rgba(13, 27, 30, 0.6);
}

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

.contacto {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.contacto-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2d4a43, #3d5a53, #2d4a43);
}

.contacto-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(122, 182, 163, 0.2) 0%, transparent 60%);
    animation: pulse-slow 4s ease-in-out infinite;
}

.contacto-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(232, 168, 124, 0.15) 0%, transparent 60%);
    animation: pulse-slow 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.contacto-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contacto-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.contacto-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .contacto-content h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .contacto-content h2 {
        font-size: 3.5rem;
    }
}

.contacto-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contacto-phone {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

.contacto-phone-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.contacto-phone-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.contacto-phone-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.contacto-phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .contacto-phone-number {
        font-size: 2rem;
    }
}

.contacto-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .contacto-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contacto-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.contacto-card svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
    margin: 0 auto 1rem;
}

.contacto-card:nth-child(2) svg {
    color: var(--color-accent);
}

.contacto-card h3 {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 0.5rem;
}

.contacto-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer {
    background-color: var(--color-dark);
    color: white;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand img {
    max-height: 5rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.footer-social a:hover {
    background-color: var(--color-primary);
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

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

.footer-contact svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark-green);
}

/* ============================================================
   SELECCIÓN
   ============================================================ */

::selection {
    background: var(--color-primary);
    color: white;
}

.btn-float-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

/* Opcional: que en móvil se adapte mejor */
@media (max-width: 768px) {
    .btn-float-whatsapp {
        right: 15px;
        bottom: 15px;
    }
}

/* Página individual profesional */
.single-profesional {
    grid-template-columns: 1fr !important;
    justify-items: center;
}

.single-profesional .profesional-card {
    max-width: 400px;
    width: 100%;
}


/* PERFIL PROFESIONAL INDIVIDUAL */

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

@media (min-width: 900px) {
    .perfil-grid {
        grid-template-columns: 400px 1fr;
    }
}

.perfil-imagen img {
    width: 100%;
    border-radius: 12px;
}

.perfil-nombre {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.perfil-rol {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.perfil-descripcion {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.perfil-curriculum h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.perfil-curriculum ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.perfil-agenda-box {
    margin-top: 4rem;
    padding: 2.5rem;
    background: #f8f9fb;
    border-radius: 16px;
    text-align: center;
}

.perfil-botones {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* BLOQUE DE TEXTO PERFIL (estilo tipo servicios) */

.perfil-info-box {
    background: #f4f6f9; /* mismo tono suave que servicios */
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

@media (max-width: 768px) {
    .perfil-info-box {
        padding: 1.8rem;
    }
}

/* HERO PROFESIONAL */

.perfil-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .perfil-hero {
        grid-template-columns: 380px 1fr;
    }
}

.perfil-imagen img {
    width: 100%;
    border-radius: 16px;
}

.perfil-nombre {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.perfil-rol {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.perfil-bullets {
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.perfil-bullets li {
    margin-bottom: 0.5rem;
}

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

/* CREDENCIALES */

.perfil-credenciales {
    margin-top: 4rem;
}

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

@media (min-width: 900px) {
    .perfil-credenciales-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* CTA FINAL */

.perfil-cta-final {
    margin-top: 5rem;
    padding: 3rem;
    background: #f4f6f9;
    border-radius: 16px;
    text-align: center;
}


/* ============================================================
   RAÍCES - Estilos para páginas individuales de profesionales
   ============================================================ */

/* Página de profesional */
.profesional-page {
    padding-top: 80px;
    padding-bottom: 4rem;
    background: var(--color-secondary);
    min-height: 100vh;
}

/* Header de la página de profesional */
.profesional-page-header {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, #3d5a53 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
    color: white;
}

.profesional-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 900px) {
    .profesional-page-grid {
        grid-template-columns: 350px 1fr;
    }
}

.profesional-page-imagen {
    position: relative;
}

.profesional-page-imagen img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.profesional-page-badge {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(122, 182, 163, 0.4);
}

.profesional-page-info h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.profesional-page-rol {
    font-size: 1.25rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.profesional-page-especialidades {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.profesional-page-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: white;
}

.profesional-page-descripcion {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
}

/* Currículum Section */
.curriculum-section {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.curriculum-title {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.curriculum-title svg {
    color: var(--color-primary);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.curriculum-block {
    padding: 1.5rem;
    background: rgba(122, 182, 163, 0.05);
    border-radius: 1rem;
    border-left: 4px solid var(--color-primary);
}

.curriculum-block h4 {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.curriculum-block h4 svg {
    color: var(--color-primary);
    width: 20px;
    height: 20px;
}

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

.curriculum-list li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.85);
    line-height: 1.5;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

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

.curriculum-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.curriculum-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.curriculum-tag {
    background: rgba(122, 182, 163, 0.15);
    color: var(--color-dark-green);
    padding: 0.4rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Agenda Section */
.agenda-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.agenda-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.agenda-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

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

.agenda-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.agenda-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.agenda-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-agenda {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-agenda-principal {
    background: white;
    color: var(--color-dark-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-agenda-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-agenda-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-agenda-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-agenda svg {
    width: 20px;
    height: 20px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

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

/* Responsive */
@media (max-width: 768px) {
    .profesional-page-info h1 {
        font-size: 1.75rem;
    }
    
    .curriculum-section {
        padding: 1.5rem;
    }
    
    .agenda-section h2 {
        font-size: 1.5rem;
    }
    
    .btn-agenda {
        width: 100%;
        justify-content: center;
    }
}

.perfil-agenda-iframe iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    border: none;
    margin-top: 2rem;
}

/* ===== DROPDOWN PROFESIONALES DEFINITIVO ===== */

.navbar-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 0.5rem 0;
    border-radius: 16px;
    display: none;
    z-index: 9999;

    background: #f4f6f9;   /* mismo tono pastel que servicios */
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
    color: inherit;
}

.dropdown-menu a:hover {
    background: rgba(0,0,0,0.05);
}

.navbar-dropdown:hover .dropdown-menu {
    display: block;
}
/* Título no clickeable en navbar */
.dropdown-title {
    display: inline-block;
    padding: 0.5rem 0.6rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    font-weight: 600;
}

/* ===== MOBILE PROFESIONALES ===== */

.mobile-section-title {
    font-weight: 600;
    padding: 1rem 0;
    cursor: pointer;
}

.mobile-submenu {
    display: none;
    padding-left: 1rem;
}

.mobile-subgroup {
    margin-bottom: 0.8rem;
}

.mobile-subgroup-title {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin: 0.5rem 0;
}

.mobile-submenu a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

/* ============================================================
   RAÍCES - Estilos para página TDAH en Adultos
   ============================================================ */

/* Hero TDAH */
.tdah-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}

.tdah-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.tdah-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45, 74, 67, 0.92), rgba(45, 74, 67, 0.80), rgba(45, 74, 67, 0.55));
    z-index: 1;
}

.tdah-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.tdah-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tdah-hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.tdah-hero h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .tdah-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .tdah-hero h1 {
        font-size: 3.5rem;
    }
}

.tdah-hero h1 span {
    color: var(--color-accent);
}

.tdah-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 600px;
}

.tdah-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tdah-hero-badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tdah-hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.tdah-hero-image {
    position: relative;
}

.tdah-hero-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

/* Secciones TDAH */
.tdah-section {
    padding: 5rem 0;
}

.tdah-section-alt {
    background: white;
}

.tdah-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tdah-section-header h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .tdah-section-header h2 {
        font-size: 2.5rem;
    }
}

.tdah-section-header p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Info Highlight */
.tdah-info-highlight {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.tdah-info-highlight h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .tdah-info-highlight h2 {
        font-size: 2.5rem;
    }
}

.tdah-info-highlight p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.8;
}

/* Mujeres Grid */
.tdah-mujeres-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tdah-mujeres-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tdah-mujeres-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.tdah-mujeres-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .tdah-mujeres-content h2 {
        font-size: 2.5rem;
    }
}

.tdah-mujeres-content > p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tdah-mujeres-sub {
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 3px solid var(--color-primary);
}

/* Stats Row */
.tdah-stats-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .tdah-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tdah-stat-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    color: white;
}

.tdah-stat-card-valor {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tdah-stat-card-label {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Impacto Nota */
.tdah-impacto-nota {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(122, 182, 163, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.tdah-impacto-nota svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.tdah-impacto-nota p {
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Síntomas */
.tdah-sintomas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.tdah-sintomas-block {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-primary);
}

.tdah-sintomas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tdah-sintomas-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.85);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    line-height: 1.5;
}

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

.tdah-sintomas-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.25rem;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.tdah-sintomas-cierre {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(122, 182, 163, 0.08);
    border-radius: 1.5rem;
}

.tdah-sintomas-cierre p {
    font-size: 1.1rem;
    color: rgba(13, 27, 30, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Diagnóstico */
.tdah-diagnostico-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tdah-diagnostico-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tdah-diagnostico-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .tdah-diagnostico-content h2 {
        font-size: 2.5rem;
    }
}

.tdah-diagnostico-content > p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tdah-diagnostico-pasos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tdah-paso {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tdah-paso-numero {
    width: 3rem;
    height: 3rem;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tdah-paso-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.tdah-paso-content p {
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
}

.tdah-diagnostico-nota {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(232, 168, 124, 0.1);
    border-radius: 1rem;
    border-left: 3px solid var(--color-accent);
}

.tdah-diagnostico-nota p {
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.6;
    margin: 0;
}

.tdah-diagnostico-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Tratamiento */
.tdah-tratamiento-habilidades {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto;
}

@media (min-width: 640px) {
    .tdah-tratamiento-habilidades {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tdah-habilidad-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(122, 182, 163, 0.1);
    border-radius: 1rem;
}

.tdah-habilidad-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.tdah-habilidad-item span {
    font-size: 1rem;
    color: var(--color-text);
}

.tdah-tratamiento-cierre {
    text-align: center;
    margin-top: 2rem;
}

.tdah-tratamiento-cierre p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.8);
    font-weight: 500;
}

/* Resultados */
.tdah-resultados {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.tdah-resultados h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .tdah-resultados h2 {
        font-size: 2.5rem;
    }
}

.tdah-resultados p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.8;
}

/* TALLERES DE PSICOEDUCACIÓN */
.tdah-talleres {
    background: linear-gradient(135deg, rgba(122, 182, 163, 0.08) 0%, rgba(232, 168, 124, 0.08) 100%);
}

.tdah-talleres-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tdah-talleres-header h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .tdah-talleres-header h2 {
        font-size: 3rem;
    }
}

.tdah-talleres-subtitulo {
    font-size: 1.25rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tdah-talleres-descripcion {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.tdah-talleres-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .tdah-talleres-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tdah-talleres-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tdah-taller-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(122, 182, 163, 0.2);
}

.tdah-taller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.tdah-taller-card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tdah-taller-card-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.tdah-taller-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.tdah-taller-card p {
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
}

/* Talleres Incluye */
.tdah-talleres-incluye {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.tdah-talleres-incluye h4 {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.tdah-talleres-incluye-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .tdah-talleres-incluye-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tdah-incluye-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(122, 182, 163, 0.08);
    border-radius: 1rem;
}

.tdah-incluye-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.tdah-incluye-item span {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* Talleres CTA */
.tdah-talleres-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    border-radius: 1.5rem;
    color: white;
}

.tdah-talleres-cta p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.tdah-talleres-cta .btn-accent {
    background: white;
    color: var(--color-dark-green);
}

.tdah-talleres-cta .btn-accent:hover {
    background: var(--color-accent);
    color: white;
}

/* CTA Final */
.tdah-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.tdah-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.tdah-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.tdah-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.tdah-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .tdah-cta h2 {
        font-size: 2.5rem;
    }
}

.tdah-cta > p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tdah-cta-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-agenda {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-agenda-principal {
    background: white;
    color: var(--color-dark-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-agenda-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-agenda-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-agenda-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-agenda svg {
    width: 20px;
    height: 20px;
}

/* Botón grande */
.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tdah-hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
    
    .tdah-hero h1 {
        font-size: 2rem;
    }
    
    .tdah-section {
        padding: 3rem 0;
    }
    
    .tdah-cta {
        padding: 3rem 1.5rem;
    }
    
    .tdah-cta h2 {
        font-size: 1.75rem;
    }
    
    .tdah-talleres-header h2 {
        font-size: 2rem;
    }
    
    .tdah-talleres-incluye-grid {
        grid-template-columns: 1fr;
    }
    
    .tdah-stats-row {
        grid-template-columns: 1fr;
    }
    
    .tdah-stat-card-valor {
        font-size: 2.5rem;
    }
}

/* ============================================================
   RAÍCES - Estilos para página Taller TDAH
   ============================================================ */

/* Hero del Taller */
.taller-hero {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, #3d5a53 100%);
    padding: 8rem 0 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.taller-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .taller-hero-grid {
        grid-template-columns: 1.3fr 0.7fr;
    }
}

.taller-hero-content {
    color: white;
}

.taller-badge-taller {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.taller-hero h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .taller-hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .taller-hero h1 {
        font-size: 4rem;
    }
}

.taller-hero-subtitulo {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.taller-hero-descripcion {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 600px;
}

.taller-hero-publico {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 550px;
}

/* Info Card */
.taller-info-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.taller-info-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.taller-info-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.taller-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.taller-info-item:last-of-type {
    border-bottom: none;
}

.taller-info-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.taller-info-item > div {
    display: flex;
    flex-direction: column;
}

.taller-info-label {
    font-size: 0.75rem;
    color: rgba(13, 27, 30, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.taller-info-valor {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 600;
}

.taller-info-precios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.taller-precio {
    text-align: center;
    padding: 1rem;
    background: rgba(122, 182, 163, 0.08);
    border-radius: 1rem;
}

.taller-precio.destacado {
    background: linear-gradient(135deg, rgba(122, 182, 163, 0.15) 0%, rgba(232, 168, 124, 0.15) 100%);
    border: 2px solid var(--color-primary);
}

.taller-precio-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(13, 27, 30, 0.6);
    margin-bottom: 0.25rem;
}

.taller-precio-valor {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.taller-precio.destacado .taller-precio-valor {
    color: var(--color-primary);
}

.taller-info-nota {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(232, 168, 124, 0.1);
    border-radius: 0.75rem;
}

.taller-info-nota svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.taller-info-nota span {
    font-size: 0.875rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* Secciones */
.taller-section {
    padding: 5rem 0;
}

.taller-section-alt {
    background: white;
}

.taller-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.taller-section-header h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .taller-section-header h2 {
        font-size: 2.5rem;
    }
}

.taller-section-header p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.7);
}

/* Temas Grid */
.taller-temas-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .taller-temas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .taller-temas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.taller-tema-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(122, 182, 163, 0.2);
}

.taller-tema-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.taller-tema-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.taller-tema-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.taller-tema-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.taller-tema-card p {
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
}

/* Beneficios Grid */
.taller-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .taller-beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .taller-beneficios-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.taller-beneficio-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.taller-beneficio-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(122, 182, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.taller-beneficio-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
}

.taller-beneficio-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.taller-beneficio-card p {
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
}

/* Facilitador */
.taller-facilitador {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .taller-facilitador {
        grid-template-columns: 300px 1fr;
    }
}

.taller-facilitador-image {
    text-align: center;
}

.taller-facilitador-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.taller-facilitador-content h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.taller-facilitador-rol {
    font-size: 1.125rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.taller-facilitador-centro {
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.7);
    margin-bottom: 1.5rem;
}

.taller-facilitador-descripcion {
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.7;
}

/* Urgencia */
.taller-urgencia {
    background: linear-gradient(135deg, rgba(232, 168, 124, 0.15) 0%, rgba(122, 182, 163, 0.15) 100%);
}

.taller-urgencia-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.taller-urgencia-content svg {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.taller-urgencia-content h3 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.taller-urgencia-content p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.7);
}

/* CTA Final */
.taller-cta-final {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.taller-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.taller-cta-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .taller-cta-content h2 {
        font-size: 2.5rem;
    }
}

.taller-cta-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.taller-cta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.taller-cta-info svg {
    width: 16px;
    height: 16px;
}

/* Botones */
.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .taller-hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }
    
    .taller-hero h1 {
        font-size: 2rem;
    }
    
    .taller-hero-subtitulo {
        font-size: 1.25rem;
    }
    
    .taller-section {
        padding: 3rem 0;
    }
    
    .taller-cta-final {
        padding: 3rem 1.5rem;
    }
    
    .taller-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .btn-xl {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}


/* ============================================================
   CARRUSEL DE TESTIMONIOS - Profesional Page
   ============================================================ */

.testimonios-carrusel-container {
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonios-carrusel {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem 1rem 1.25rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.testimonios-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonio-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

/* Icono de comillas */
.testimonio-quote-icon {
    position: absolute;
    top: -0.6rem;
    left: 1rem;
    width: 1.8rem;
    height: 1.8rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(122, 182, 163, 0.4);
}

.testimonio-quote-icon svg {
    width: 0.85rem;
    height: 0.85rem;
    color: white;
}

/* Estrellas amarillas/naranjas */
.testimonio-estrellas {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
}

.testimonio-estrellas svg {
    width: 0.9rem;
    height: 0.9rem;
    color: #e8a87c;
    fill: #e8a87c;
}

/* Contenido del testimonio */
.testimonio-contenido {
    margin-bottom: 0.75rem;
}

.testimonio-texto {
    font-size: 0.8rem;
    color: var(--color-text);
    line-height: 1.5;
    font-style: italic;
}

/* Autor del testimonio */
.testimonio-autor {
    text-align: center;
}

.testimonio-autor h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.testimonio-etiqueta {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Navegacion del carrusel */
.testimonios-navegacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.testimonio-btn {
    width: 1.8rem;
    height: 1.8rem;
    border: 1.5px solid rgba(122, 182, 163, 0.3);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
}

.testimonio-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.testimonio-btn svg {
    width: 0.85rem;
    height: 0.85rem;
}

/* Dots de navegacion */
.testimonios-dots {
    display: flex;
    gap: 0.35rem;
}

.testimonio-dot {
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background-color: rgba(122, 182, 163, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonio-dot.active {
    background-color: var(--color-primary);
    width: 1.2rem;
}

.testimonio-dot:hover {
    background-color: rgba(122, 182, 163, 0.6);
}

/* Responsive - Mobile First */
@media (max-width: 639px) {
    .profesional-page-grid {
        gap: 1.5rem;
    }
    
    .profesional-page-imagen {
        max-width: 100%;
        overflow: hidden;
    }
    
    .testimonios-carrusel-container {
        margin-top: 0.75rem;
        max-width: 100%;
        overflow: hidden;
        padding: 0;
    }
    
    .testimonios-carrusel {
        padding: 1.25rem 0.5rem 1rem;
        border-radius: 0.75rem;
        max-width: 100%;
    }
    
    .testimonio-slide {
        padding: 0 0.25rem;
        min-width: 0;
        max-width: 100%;
    }
    
    .testimonio-texto {
        font-size: 0.75rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .testimonio-quote-icon {
        width: 1.5rem;
        height: 1.5rem;
        top: -0.5rem;
        left: 0.5rem;
    }
    
    .testimonio-quote-icon svg {
        width: 0.7rem;
        height: 0.7rem;
    }
    
    .testimonio-estrellas {
        margin-bottom: 0.5rem;
        margin-top: 0.15rem;
    }
    
    .testimonio-estrellas svg {
        width: 0.75rem;
        height: 0.75rem;
    }
    
    .testimonio-contenido {
        margin-bottom: 0.5rem;
        max-width: 100%;
    }
    
    .testimonio-autor h4 {
        font-size: 0.8rem;
    }
    
    .testimonio-etiqueta {
        font-size: 0.65rem;
    }
    
    .testimonios-navegacion {
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
    
    .testimonio-btn {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .testimonio-btn svg {
        width: 0.7rem;
        height: 0.7rem;
    }
    
    .testimonio-dot {
        width: 5px;
        height: 5px;
    }
    
    .testimonio-dot.active {
        width: 1rem;
    }
}

@media (min-width: 640px) {
    .testimonios-carrusel {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .testimonio-texto {
        font-size: 0.85rem;
    }

    .testimonio-quote-icon {
        width: 2rem;
        height: 2rem;
        left: 1.25rem;
    }

    .testimonio-quote-icon svg {
        width: 0.95rem;
        height: 0.95rem;
    }
}

/* ============================================================
   RAÍCES - Estilos para Taller de Terapia Ocupacional TDAH
   ============================================================ */

/* Hero */
.taller-hero {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, #3d5a53 100%);
    padding: 8rem 0 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.taller-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .taller-hero-grid {
        grid-template-columns: 1.3fr 0.7fr;
    }
}

.taller-hero-content {
    color: white;
}

.taller-badge-taller {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.taller-hero h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .taller-hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .taller-hero h1 {
        font-size: 4rem;
    }
}

.taller-hero-subtitulo {
    font-size: 1.75rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.taller-hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.taller-hero-descripcion {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 600px;
}

.taller-hero-publico {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 550px;
}

/* Info Card */
.taller-info-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.taller-info-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.taller-info-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.taller-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.taller-info-item:last-of-type {
    border-bottom: none;
}

.taller-info-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.taller-info-item > div {
    display: flex;
    flex-direction: column;
}

.taller-info-label {
    font-size: 0.75rem;
    color: rgba(13, 27, 30, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.taller-info-valor {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 600;
}

.taller-info-precios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.taller-precio {
    text-align: center;
    padding: 1rem;
    background: rgba(122, 182, 163, 0.08);
    border-radius: 1rem;
}

.taller-precio.destacado {
    background: linear-gradient(135deg, rgba(122, 182, 163, 0.15) 0%, rgba(232, 168, 124, 0.15) 100%);
    border: 2px solid var(--color-primary);
}

.taller-precio-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(13, 27, 30, 0.6);
    margin-bottom: 0.25rem;
}

.taller-precio-valor {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.taller-precio.destacado .taller-precio-valor {
    color: var(--color-primary);
}

.taller-info-nota {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(232, 168, 124, 0.1);
    border-radius: 0.75rem;
}

.taller-info-nota svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.taller-info-nota span {
    font-size: 0.875rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* Secciones */
.taller-section {
    padding: 5rem 0;
}

.taller-section-alt {
    background: white;
}

.taller-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.taller-section-header h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .taller-section-header h2 {
        font-size: 2.5rem;
    }
}

.taller-section-header p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.7);
}

/* ¿Qué es TO? */
.to-que-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .to-que-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.to-que-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.to-que-content h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .to-que-content h2 {
        font-size: 2.5rem;
    }
}

.to-que-content > p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.to-que-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(122, 182, 163, 0.1);
    border-radius: 1rem;
    border-left: 4px solid var(--color-primary);
}

.to-que-highlight svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.to-que-highlight p {
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Temas Grid */
.taller-temas-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .taller-temas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .taller-temas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.taller-tema-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(122, 182, 163, 0.2);
}

.taller-tema-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.taller-tema-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.taller-tema-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.taller-tema-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.taller-tema-card p {
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
}

/* Beneficios Grid */
.taller-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .taller-beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .taller-beneficios-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.taller-beneficio-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.taller-beneficio-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(122, 182, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.taller-beneficio-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
}

.taller-beneficio-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.taller-beneficio-card p {
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
}

/* ¿Para quién es? */
.to-paraquien-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .to-paraquien-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.to-paraquien-content h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .to-paraquien-content h2 {
        font-size: 2.5rem;
    }
}

.to-paraquien-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.to-paraquien-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: rgba(13, 27, 30, 0.85);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

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

.to-paraquien-list li svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.to-paraquien-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Facilitadoras */
.taller-facilitadoras-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .taller-facilitadoras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.taller-facilitadora-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.taller-facilitadora-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.taller-facilitadora-image {
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: rgba(122, 182, 163, 0.1);
}

.taller-facilitadora-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: top center;
}

.taller-facilitadora-content {
    padding: 1.5rem;
    text-align: center;
}

.taller-facilitadora-content h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.taller-facilitadora-rol {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.taller-facilitadora-descripcion {
    font-size: 0.9rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
}

/* Urgencia */
.taller-urgencia {
    background: linear-gradient(135deg, rgba(232, 168, 124, 0.15) 0%, rgba(122, 182, 163, 0.15) 100%);
}

.taller-urgencia-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.taller-urgencia-content svg {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.taller-urgencia-content h3 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.taller-urgencia-content p {
    font-size: 1.125rem;
    color: rgba(13, 27, 30, 0.7);
}

/* CTA Final */
.taller-cta-final {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.taller-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.taller-cta-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .taller-cta-content h2 {
        font-size: 2.5rem;
    }
}

.taller-cta-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.taller-cta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.taller-cta-info svg {
    width: 16px;
    height: 16px;
}

/* Botones */
.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .taller-hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }
    
    .taller-hero h1 {
        font-size: 2rem;
    }
    
    .taller-hero-subtitulo {
        font-size: 1.5rem;
    }
    
    .taller-section {
        padding: 3rem 0;
    }
    
    .taller-cta-final {
        padding: 3rem 1.5rem;
    }
    
    .taller-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .btn-xl {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .taller-facilitadora-image {
        height: 200px;
    }
}


/* ============================================================
   RAÍCES - Estilos para página TEA en Adultos
   ============================================================ */

/* Hero TEA */
/* ============================================================
   RAÍCES - Estilos para página TEA en Adultos
   ============================================================ */

/* Hero TEA */
.tea-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}

.tea-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.tea-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45, 74, 67, 0.92), rgba(45, 74, 67, 0.75), rgba(45, 74, 67, 0.5));
    z-index: 1;
}

.tea-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.tea-hero-text {
    max-width: 700px;
}

.tea-badge {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.tea-hero h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .tea-hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .tea-hero h1 {
        font-size: 4rem;
    }
}

.tea-hero-subtitulo {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Testimonio en Hero */
.tea-testimonio-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-accent);
}

.tea-testimonio-hero svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.tea-testimonio-hero p {
    font-size: 1.1rem;
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.tea-testimonio-hero span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Secciones */
.tea-section {
    padding: 5rem 0;
}

.tea-section-alt {
    background: white;
}

.tea-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tea-section-header h2 {
    font-size: 2rem;
    color: var(--color-text);
}

@media (min-width: 640px) {
    .tea-section-header h2 {
        font-size: 2.5rem;
    }
}

/* Validación */
.tea-validacion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tea-validacion-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tea-validacion-content h2 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .tea-validacion-content h2 {
        font-size: 2.25rem;
    }
}

.tea-validacion-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.tea-validacion-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: rgba(13, 27, 30, 0.85);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

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

.tea-validacion-list li svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.tea-validacion-cierre {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(122, 182, 163, 0.1);
    border-radius: 1rem;
    border-left: 4px solid var(--color-primary);
}

.tea-validacion-cierre svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.tea-validacion-cierre p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

.tea-validacion-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Enfoque */
.tea-enfoque-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tea-enfoque-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tea-enfoque-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tea-enfoque-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(122, 182, 163, 0.2);
}

.tea-enfoque-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.tea-enfoque-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.tea-enfoque-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.tea-enfoque-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.tea-enfoque-card p {
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
}

/* Servicios */
.tea-servicios-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tea-servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tea-servicio-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-primary);
}

.tea-servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.tea-servicio-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(122, 182, 163, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.tea-servicio-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--color-primary);
}

.tea-servicio-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.tea-servicio-card p {
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
}

/* Link ADOS-2 */
.tea-ados-link {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(122, 182, 163, 0.08);
    border-radius: 1rem;
}

.tea-ados-link p {
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.8);
    margin: 0;
}

.tea-ados-link a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

.tea-ados-link a:hover {
    color: var(--color-dark-green);
}

/* FAQ */
.tea-faq-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tea-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tea-faq-item {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.tea-faq-item h3 {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
}

.tea-faq-item p {
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.75);
    line-height: 1.7;
    margin: 0;
}

/* CTA Final */
.tea-cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
}

.tea-cta-final {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.tea-cta-final h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .tea-cta-final h2 {
        font-size: 2.5rem;
    }
}

.tea-cta-final > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Botones */
.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================================
   SECCIONES NUEVAS (6 bloques agregados)
   ============================================================ */

/* --- 1. IDENTIFICACIÓN (Síntomas) --- */
.tea-ident-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .tea-ident-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tea-ident-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tea-ident-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-top: 5px solid;
}

.tea-ident-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.tea-ident-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.tea-ident-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.tea-ident-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.tea-ident-card p {
    font-size: 0.9rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Colores por card */
.tea-ident-card.social   { border-top-color: #5B9BD5; }
.tea-ident-card.social .tea-ident-icon { background: #5B9BD5; }
.tea-ident-card.sensorial { border-top-color: #9B7ED8; }
.tea-ident-card.sensorial .tea-ident-icon { background: #9B7ED8; }
.tea-ident-card.rutinas  { border-top-color: #7AB6A3; }
.tea-ident-card.rutinas .tea-ident-icon { background: #7AB6A3; }
.tea-ident-card.agotamiento { border-top-color: #8C8C8C; }
.tea-ident-card.agotamiento .tea-ident-icon { background: #8C8C8C; }

/* --- 2. IMPACTO --- */
.tea-impacto-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tea-impacto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tea-impacto-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-accent);
}

.tea-impacto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.tea-impacto-card svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.tea-impacto-card p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* --- 3. BLOQUE CLAVE: DIAGNÓSTICO + ADOS --- */
.tea-diagnostico-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .tea-diagnostico-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tea-diag-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.tea-diag-card h3 {
    font-size: 1.35rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tea-diag-card h3 svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--color-primary);
}

.tea-diag-card p {
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ADOS destacado */
.tea-ados-card {
    background: linear-gradient(135deg, #3d5a52 0%, #2d4a43 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tea-ados-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232,168,124,0.08) 0%, transparent 60%);
}

.tea-ados-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.tea-ados-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tea-ados-card > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tea-ados-ventajas {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 1;
}

.tea-ados-ventajas li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.tea-ados-ventajas li svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.tea-ados-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.tea-ados-cta:hover {
    background: #d9966a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

/* --- 4. PROCESO (4 pasos) --- */
.tea-proceso-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 1024px) {
    .tea-proceso-timeline {
        flex-direction: row;
        gap: 2rem;
    }
    
    .tea-proceso-timeline::before {
        content: '';
        position: absolute;
        top: 2.5rem;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(to right, var(--color-primary), var(--color-accent));
        z-index: 0;
    }
}

.tea-paso {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.tea-paso-numero {
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.tea-paso h4 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.tea-paso p {
    font-size: 0.9rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* --- 5. EVALUACIÓN NEUROPSICOLÓGICA --- */
.tea-neuro-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #4A9B8E;
}

@media (min-width: 768px) {
    .tea-neuro-card {
        grid-template-columns: 320px 1fr;
    }
}

.tea-neuro-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.tea-neuro-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tea-neuro-content h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.tea-neuro-content > p {
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.tea-neuro-casos {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.tea-neuro-casos li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--color-text);
}

.tea-neuro-casos li svg {
    width: 18px;
    height: 18px;
    color: #4A9B8E;
    flex-shrink: 0;
}

.tea-neuro-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4A9B8E;
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.tea-neuro-cta:hover {
    background: #3d8579;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: white;
}

/* --- 6. CTA FINAL (2 botones) --- */
.tea-cta-final-nuevo {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tea-cta-final-nuevo h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .tea-cta-final-nuevo h2 {
        font-size: 2.5rem;
    }
}

.tea-cta-final-nuevo > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tea-cta-botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tea-cta-botones .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tea-cta-botones .btn-white {
    background: white;
    color: var(--color-dark-green);
    border-color: white;
}

.tea-cta-botones .btn-white:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.tea-cta-botones .btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.tea-cta-botones .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive nuevas secciones */
@media (max-width: 768px) {
    .tea-proceso-timeline::before {
        display: none;
    }
    
    .tea-paso {
        padding: 1rem 0;
        border-bottom: 1px dashed rgba(0,0,0,0.1);
    }
    
    .tea-paso:last-child {
        border-bottom: none;
    }
    
    .tea-cta-botones {
        flex-direction: column;
    }
    
    .tea-cta-botones .btn {
        width: 100%;
        justify-content: center;
    }
    
    .tea-diag-card,
    .tea-ados-card {
        padding: 1.75rem;
    }
    
    .tea-neuro-content {
        padding: 1.75rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tea-hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
    
    .tea-hero h1 {
        font-size: 2rem;
    }
    
    .tea-section {
        padding: 3rem 0;
    }
    
    .tea-validacion-content h2 {
        font-size: 1.5rem;
    }
    
    .tea-cta-final h2 {
        font-size: 1.75rem;
    }
    
    .btn-xl {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================================
   RAÍCES - Estilos específicos para Test ADOS-2
   ============================================================ */

/* ============================================================
   SECCIÓN 1: HERO
   ============================================================ */
.ados-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}

.ados-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.ados-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(45, 74, 67, 0.95), rgba(45, 74, 67, 0.8), rgba(45, 74, 67, 0.6));
    z-index: 2;
}

.ados-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 700px;
    padding: 2rem 0;
}

.ados-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 168, 124, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ados-hero-badge svg {
    width: 16px;
    height: 16px;
}

.ados-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.ados-hero h1 span {
    color: var(--color-accent);
}

.ados-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.ados-hero-cta .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.ados-hero-cta .btn-primary:hover {
    background: #d9966a;
    border-color: #d9966a;
    transform: translateY(-2px);
}

/* ============================================================
   SECCIÓN 2: ¿QUÉ ES EL ADOS-2?
   ============================================================ */
.ados-que-es {
    padding: 5rem 0;
    background: var(--color-bg);
}

.ados-que-es-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ados-que-es-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.ados-que-es-content p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ados-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ados-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ados-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ados-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.ados-feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 0.25rem;
}

.ados-feature-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.ados-que-es-image {
    position: relative;
}

.ados-que-es-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   SECCIÓN 3: EL PROCESO DE 3 SESIONES
   ============================================================ */
.ados-proceso {
    padding: 5rem 0;
    background: white;
}

.ados-proceso-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.ados-proceso-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
}

.ados-proceso-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.ados-proceso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ados-paso {
    background: var(--color-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ados-paso:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ados-paso-numero {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.ados-paso h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 0.75rem;
}

.ados-paso h3 span {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.ados-paso p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
}

.ados-paso-conector {
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background: var(--color-primary);
}

.ados-paso-conector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--color-primary);
}

.ados-proceso-grid .ados-paso:last-child .ados-paso-conector {
    display: none;
}

/* ============================================================
   SECCIÓN 4: REQUISITOS
   ============================================================ */
.ados-requisitos {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-dark-green) 0%, #3d5a52 100%);
    color: white;
}

.ados-requisitos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ados-requisitos-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.ados-requisito-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ados-requisito-box h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
}

.ados-requisito-box h4 svg {
    width: 20px;
    height: 20px;
}

.ados-requisito-box p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.ados-cierre-box {
    background: rgba(232, 168, 124, 0.15);
    border: 1px solid var(--color-accent);
    border-radius: 16px;
    padding: 1.5rem;
}

.ados-cierre-box h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
}

.ados-cierre-box h4 svg {
    width: 20px;
    height: 20px;
}

.ados-cierre-box p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.ados-requisitos-image {
    position: relative;
}

.ados-requisitos-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   SECCIÓN 5: PROFESIONAL
   ============================================================ */
.ados-profesional {
    padding: 5rem 0;
    background: var(--color-bg);
}

.ados-profesional-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ados-profesional-image {
    position: relative;
}

.ados-profesional-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ados-profesional-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(122, 182, 163, 0.4);
}

.ados-profesional-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 0.5rem;
}

.ados-profesional-content .cargo {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.ados-profesional-content p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ados-profesional-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.ados-profesional-cred {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-bg);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--color-dark-green);
}

.ados-profesional-cred svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* ============================================================
   SECCIÓN 6: ENFOQUE NEUROAFIRMATIVO
   ============================================================ */
.ados-neuroafirmativo {
    padding: 5rem 0;
    background: white;
}

.ados-neuroafirmativo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ados-neuroafirmativo-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.ados-neuroafirmativo-content > p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ados-neuro-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.ados-neuro-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-text);
}

.ados-neuro-list li svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.ados-neuroafirmativo-image {
    position: relative;
}

.ados-neuroafirmativo-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   SECCIÓN 7: CTA FINAL
   ============================================================ */
.ados-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-green) 100%);
    text-align: center;
}

.ados-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.ados-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.ados-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.ados-cta .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.ados-cta .btn-primary:hover {
    background: #d9966a;
    border-color: #d9966a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ados-cta-nota {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .ados-que-es-grid,
    .ados-requisitos-grid,
    .ados-neuroafirmativo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ados-que-es-image,
    .ados-requisitos-image,
    .ados-neuroafirmativo-image {
        order: -1;
    }
    
    .ados-proceso-grid {
        grid-template-columns: 1fr;
    }
    
    .ados-paso-conector {
        display: none;
    }
    
    .ados-profesional-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ados-profesional-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .ados-profesional-creds {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ados-features {
        grid-template-columns: 1fr;
    }
    
    .ados-hero-cta {
        flex-direction: column;
    }
    
    .ados-hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   RAÍCES - Estilos específicos para Evaluación Neuropsicológica
   ============================================================ */

/* ============================================================
   SECCIÓN 1: HERO
   ============================================================ */
.neuro-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}

.neuro-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.neuro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(45, 74, 67, 0.95), rgba(45, 74, 67, 0.8), rgba(45, 74, 67, 0.6));
    z-index: 2;
}

.neuro-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 750px;
    padding: 2rem 0;
}

.neuro-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 168, 124, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.neuro-hero-badge svg {
    width: 16px;
    height: 16px;
}

.neuro-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.neuro-hero h1 span {
    color: var(--color-accent);
}

.neuro-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.neuro-hero-cta .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.neuro-hero-cta .btn-primary:hover {
    background: #d9966a;
    border-color: #d9966a;
    transform: translateY(-2px);
}

/* ============================================================
   SECCIÓN 2: ESPECIALIDADES
   ============================================================ */
.neuro-especialidades {
    padding: 5rem 0;
    background: var(--color-bg);
}

.neuro-especialidades-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.neuro-especialidades-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
}

.neuro-especialidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.neuro-especialidad {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.neuro-especialidad:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.neuro-especialidad-icon {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.neuro-especialidad-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.neuro-especialidad h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
}

.neuro-especialidad p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

/* Destaque para AACC */
.neuro-especialidad.destacada {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, #3d5a52 100%);
    color: white;
}

.neuro-especialidad.destacada .neuro-especialidad-icon {
    background: var(--color-accent);
}

.neuro-especialidad.destacada h3 {
    color: white;
}

.neuro-especialidad.destacada p {
    color: rgba(255, 255, 255, 0.9);
}

.neuro-especialidad-badge {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ============================================================
   SECCIÓN 3: PROFESIONAL (AUTORIDAD)
   ============================================================ */
.neuro-profesional {
    padding: 5rem 0;
    background: white;
}

.neuro-profesional-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

.neuro-profesional-image {
    position: relative;
}

.neuro-profesional-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.neuro-profesional-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(122, 182, 163, 0.4);
}

.neuro-profesional-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1.5rem;
}

.neuro-profesional-content > p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.neuro-profesional-creds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.neuro-profesional-cred {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--color-bg);
    padding: 1rem;
    border-radius: 12px;
}

.neuro-profesional-cred svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.neuro-profesional-cred span {
    font-size: 0.95rem;
    color: var(--color-dark-green);
    line-height: 1.4;
}

/* ============================================================
   SECCIÓN 4: PROCESO
   ============================================================ */
.neuro-proceso {
    padding: 5rem 0;
    background: var(--color-bg);
}

.neuro-proceso-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.neuro-proceso-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
}

.neuro-proceso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.neuro-paso {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neuro-paso:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.neuro-paso-numero {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.neuro-paso h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 0.75rem;
}

.neuro-paso p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

.neuro-paso-conector {
    position: absolute;
    top: 35px;
    right: -1.5rem;
    width: 1.5rem;
    height: 2px;
    background: var(--color-primary);
}

.neuro-paso-conector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--color-primary);
}

.neuro-proceso-grid .neuro-paso:last-child .neuro-paso-conector {
    display: none;
}

/* ============================================================
   SECCIÓN 5: ENGANCHE Y CIERRE
   ============================================================ */
.neuro-cierre {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-dark-green) 0%, #3d5a52 100%);
    color: white;
}

.neuro-cierre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.neuro-cierre-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.neuro-cierre-content > p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.neuro-cierre-cta .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

.neuro-cierre-cta .btn-primary:hover {
    background: #d9966a;
    border-color: #d9966a;
    transform: translateY(-3px);
}

.neuro-cierre-image {
    position: relative;
}

.neuro-cierre-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.neuro-cta-final {
    padding: 4rem 0;
    background: var(--color-primary);
    text-align: center;
}

.neuro-cta-final-content {
    max-width: 700px;
    margin: 0 auto;
}

.neuro-cta-final h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

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

.neuro-cta-final .btn-primary {
    background: white;
    border-color: white;
    color: var(--color-dark-green);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.neuro-cta-final .btn-primary:hover {
    background: var(--color-bg);
    border-color: var(--color-bg);
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .neuro-especialidades-grid {
        grid-template-columns: 1fr;
    }
    
    .neuro-profesional-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .neuro-profesional-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .neuro-profesional-creds {
        grid-template-columns: 1fr;
    }
    
    .neuro-proceso-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .neuro-paso-conector {
        display: none;
    }
    
    .neuro-cierre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .neuro-cierre-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .neuro-proceso-grid {
        grid-template-columns: 1fr;
    }
    
    .neuro-hero-cta {
        flex-direction: column;
    }
    
    .neuro-hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .neuro-cierre-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   RAÍCES - Estilos para Políticas de Atención (Documento Legal)
   ============================================================ */

/* Hero compacto para documentos legales */
.politicas-hero {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-primary) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.politicas-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.politicas-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Contenedor principal del documento */
.politicas-documento {
    padding: 4rem 0;
    background: var(--color-bg);
}

.politicas-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Secciones numeradas */
.politicas-seccion {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.politicas-seccion:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Encabezado de seccion */
.politicas-seccion-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.politicas-numero {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.politicas-seccion h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark-green);
    line-height: 1.4;
    margin: 0;
    padding-top: 0.4rem;
}

/* Contenido de seccion */
.politicas-seccion p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.politicas-seccion p:last-child {
    margin-bottom: 0;
}

/* Listas */
.politicas-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.politicas-lista li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
}

.politicas-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Sub-listas */
.politicas-sub-lista {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0.75rem 1.75rem;
}

.politicas-sub-lista li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

.politicas-sub-lista li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 600;
}

/* Alertas / Destacados */
.politicas-alerta {
    background: #fff8f0;
    border-left: 4px solid var(--color-accent);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.25rem 0;
}

.politicas-alerta p {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
}

/* Bloque de informacion importante */
.politicas-info {
    background: #f0f9f6;
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.politicas-info-titulo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.politicas-info-titulo svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.politicas-info p {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
}

/* Seccion particularidades - destacada */
.politicas-seccion.destacada {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e8e8e8;
}

.politicas-seccion.destacada .politicas-seccion-header {
    margin-bottom: 1rem;
}

/* Fecha de actualizacion */
.politicas-fecha {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .politicas-hero {
        padding: 7rem 1.5rem 3rem;
    }

    .politicas-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 0;
    }

    .politicas-seccion {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .politicas-seccion.destacada {
        padding: 1.5rem;
    }

    .politicas-seccion h2 {
        font-size: 1.2rem;
    }
}

/* ============================================================
   RAÍCES - 3 Nuevas Secciones para el Index
   1. ¿Qué estás buscando?  (3 cards)
   2. TDAH Adultos           (2 columnas)
   3. Evaluación Neuropsicológica (2 columnas invertidas)
   ============================================================ */

/* ============================================================
   SECCION 1: ¿QUÉ ESTÁS BUSCANDO?  (3 cards grandes)
   ============================================================ */
.que-busca {
    padding: 5rem 0;
    background: var(--color-bg, #f6f4f0);
}

.qb-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .qb-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.qb-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.qb-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/* Header de la card con color */
.qb-card-top {
    padding: 2.5rem 2rem 2rem;
    color: white;
    text-align: center;
}

.qb-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    backdrop-filter: blur(4px);
}

.qb-card-top h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Cuerpo de la card */
.qb-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.qb-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.qb-lista li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--color-text, #0d1b1e);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.qb-lista li:last-child {
    border-bottom: none;
}

.qb-lista li span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* CTA principal */
.qb-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qb-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

.qb-cta svg {
    transition: transform 0.3s ease;
}

.qb-cta:hover svg {
    transform: translateX(4px);
}

/* CTA secundario (solo TEA) */
.qb-cta-sec {
    background: transparent !important;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    padding: 0.75rem;
}

.qb-cta-sec:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.8;
}

/* ============================================================
   SECCIONES 2 & 3: CONVERSION 2-COLUMNAS (TDAH + NEURO)
   ============================================================ */
.idx-conversion {
    padding: 5rem 0;
    background: white;
}

.idx-conversion--alt {
    background: var(--color-bg, #f6f4f0);
}

.idx-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .idx-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Variante con columnas invertidas */
.idx-grid--reverse .idx-content {
    order: 2;
}

.idx-grid--reverse .idx-imagen {
    order: 1;
}

@media (max-width: 1023px) {
    .idx-grid--reverse .idx-content {
        order: 1;
    }
    .idx-grid--reverse .idx-imagen {
        order: 2;
    }
}

/* ---- COLUMNA TEXTO ---- */
.idx-content .section-badge {
    margin-bottom: 1rem;
}

.idx-content .section-title {
    text-align: left;
    margin-bottom: 1.25rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.idx-lead {
    font-size: 1.1rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.idx-list-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark-green, #2d4a43);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.idx-lista li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: var(--color-text, #0d1b1e);
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.idx-lista li svg {
    color: var(--color-primary, #7ab6a3);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Cuadro de validación */
.idx-validacion {
    background: rgba(122, 182, 163, 0.08);
    border-left: 4px solid var(--color-primary, #7ab6a3);
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.idx-validacion p {
    font-size: 1rem;
    color: var(--color-text, #0d1b1e);
    line-height: 1.7;
    margin: 0;
}

.idx-validacion--accent {
    background: rgba(232, 168, 124, 0.08);
    border-left-color: var(--color-accent, #e8a87c);
}

/* Texto antes de botones */
.idx-cta-texto {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(13, 27, 30, 0.65);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Botones */
.idx-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.idx-botones .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.idx-botones .btn-primary {
    background: var(--color-primary, #7ab6a3);
    border-color: var(--color-primary, #7ab6a3);
}

.idx-botones .btn-primary:hover {
    background: var(--color-dark-green, #2d4a43);
    border-color: var(--color-dark-green, #2d4a43);
}

.idx-botones .btn-outline {
    border: 2px solid var(--color-primary, #7ab6a3);
    color: var(--color-primary, #7ab6a3);
    background: transparent;
}

.idx-botones .btn-outline:hover {
    background: var(--color-primary, #7ab6a3);
    color: white;
}

/* ---- COLUMNA IMAGEN ---- */
.idx-imagen {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.idx-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    display: block;
    min-height: 400px;
    max-height: 600px;
}

.idx-imagen-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-primary, #7ab6a3);
    color: white;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.idx-imagen-badge svg {
    flex-shrink: 0;
}

.idx-imagen-badge--alt {
    background: var(--color-accent, #e8a87c);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .que-busca,
    .idx-conversion {
        padding: 3.5rem 0;
    }

    .qb-card-top {
        padding: 2rem 1.5rem 1.5rem;
    }

    .qb-card-body {
        padding: 1.5rem;
    }

    .idx-grid {
        gap: 2rem;
    }

    .idx-imagen img {
        min-height: 300px;
    }

    .idx-botones {
        flex-direction: column;
    }

    .idx-botones .btn {
        width: 100%;
        justify-content: center;
    }

    .idx-content .section-title {
        font-size: 1.75rem;
    }
}

/* ============================================================
   RAÍCES - ¿Qué estás buscando? Overrides
   Centrado en desktop + checks + botones abajo
   ============================================================ */

/* Scroll container: centrado en desktop, scroll en móvil */
.qb-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 1rem;
}

.qb-scroll::-webkit-scrollbar {
    display: none;
}

/* Desktop: centrar cards, sin scroll */
@media (min-width: 1024px) {
    .qb-scroll {
        justify-content: center;
        overflow-x: visible;
        scroll-snap-type: none;
        flex-wrap: wrap;
    }
}

/* Cards con max-width para que no se estiren */
.qb-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .qb-card {
        flex: 0 1 360px;
    }
}

/* Features con checkmarks */
.qb-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.qb-features li span {
    display: none !important;
}

/* Botones al fondo de la card */
.qb-buttons {
    margin-top: auto;
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.qb-buttons .btn {
    width: 100%;
    justify-content: center;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qb-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.qb-buttons .btn-outline {
    background: transparent;
}

.qb-buttons .btn-outline:hover {
    background: rgba(0,0,0,0.04);
}
/* ============================================================
   RAÍCES - Talleres TDAH Adultos
   Estilos para la página que agrupa ambos talleres
   ============================================================ */

/* --- HERO --- */
.tall-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
    background: var(--color-dark-green);
}

.tall-hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(122, 182, 163, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 168, 124, 0.1) 0%, transparent 50%);
}

.tall-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(45, 74, 67, 0.85), rgba(45, 74, 67, 0.95));
    z-index: 1;
}

.tall-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 0;
}

.tall-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 168, 124, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tall-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.tall-hero-subtitulo {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* --- INTRO --- */
.tall-intro {
    padding: 4rem 0;
    background: var(--color-bg);
}

.tall-intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.tall-intro-content h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.tall-intro-content > p {
    font-size: 1.1rem;
    color: rgba(13, 27, 30, 0.75);
    line-height: 1.7;
}

/* --- GRID DE TALLERES --- */
.tall-grid {
    padding: 3rem 0 5rem;
    background: white;
}

.tall-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .tall-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card individual */
.tall-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tall-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.tall-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.tall-card-header {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    color: white;
    text-align: center;
}

.tall-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tall-card-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.tall-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tall-card-desc {
    font-size: 0.95rem;
    color: rgba(13, 27, 30, 0.75);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Facilitadores */
.tall-facilitadores {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: var(--color-bg);
    border-radius: 0.75rem;
}

.tall-facilitadores svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Meta info */
.tall-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tall-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.tall-meta-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Precios */
.tall-card-precios {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 1rem;
}

.tall-precio {
    display: flex;
    flex-direction: column;
}

.tall-precio-pref {
    margin-left: auto;
    text-align: right;
}

.tall-precio-valor {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark-green);
}

.tall-precio-pref .tall-precio-valor {
    color: var(--color-accent);
}

.tall-precio-label {
    font-size: 0.8rem;
    color: rgba(13, 27, 30, 0.5);
}

/* Cupos */
.tall-cupos {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

/* Temas */
.tall-temas {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.tall-temas li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.tall-temas li:last-child {
    border-bottom: none;
}

.tall-temas li svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Botones card */
.tall-card-botones {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.tall-card-botones .btn {
    width: 100%;
    justify-content: center;
    font-weight: 600;
}

.tall-btn-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem;
    transition: gap 0.3s ease;
}

.tall-btn-info:hover {
    gap: 0.75rem;
}

.tall-btn-info svg {
    transition: transform 0.3s ease;
}

.tall-btn-info:hover svg {
    transform: translateX(4px);
}

/* --- DIFERENCIAS --- */
.tall-diferencias {
    padding: 4rem 0;
    background: var(--color-bg);
}

.tall-diff-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tall-diff-header h2 {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-top: 1rem;
}

.tall-diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .tall-diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tall-diff-item {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--color-primary);
}

.tall-diff-pregunta {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.tall-diff-respuesta {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 700;
    margin: 0;
}

/* --- CTA FINAL --- */
.tall-cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-dark-green) 0%, #3d5a52 100%);
    text-align: center;
}

.tall-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.tall-cta-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.tall-cta-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tall-cta-botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tall-cta-botones .btn-white {
    background: white;
    color: var(--color-dark-green);
    border-color: white;
}

.tall-cta-botones .btn-white:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.tall-cta-botones .btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.tall-cta-botones .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .tall-hero {
        min-height: 60vh;
    }
    
    .tall-card-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .tall-card-body {
        padding: 1.5rem;
    }
    
    .tall-card-precios {
        gap: 1rem;
    }
    
    .tall-cta-botones {
        flex-direction: column;
    }
    
    .tall-cta-botones .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   RAÍCES - Nutrición
   Nutricionista para TDAH, Salud Digestiva y TCA
   ============================================================ */

/* HERO */
.nut-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}

.nut-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.nut-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45, 74, 67, 0.93), rgba(45, 74, 67, 0.80), rgba(45, 74, 67, 0.55));
    z-index: 1;
}

.nut-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.nut-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 168, 124, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.nut-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.nut-hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* SECCIONES GENERALES */
.nut-section {
    padding: 5rem 0;
    background: white;
}

.nut-section-alt {
    background: var(--color-bg);
}

.nut-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.nut-section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
}

.nut-section-header p {
    font-size: 1.1rem;
    color: rgba(13, 27, 30, 0.7);
    line-height: 1.7;
}

/* INTRO */
.nut-intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(13, 27, 30, 0.75);
}

/* ¿CUÁNDO CONSULTAR? */
.nut-cuando-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .nut-cuando-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nut-cuando-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.5;
    border-left: 3px solid var(--color-primary);
}

.nut-cuando-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* BLOQUES TEMÁTICOS (TDAH / Digestiva / Atracones) */
.nut-bloque {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nut-bloque {
        grid-template-columns: 1fr 1fr;
    }
}

.nut-bloque--reverse .nut-bloque-texto {
    order: 2;
}

.nut-bloque--reverse .nut-bloque-imagen {
    order: 1;
}

@media (max-width: 767px) {
    .nut-bloque--reverse .nut-bloque-texto { order: 1; }
    .nut-bloque--reverse .nut-bloque-imagen { order: 2; }
}

.nut-bloque-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: white;
}

.nut-bloque-badge--tdah { background: #e8a87c; }
.nut-bloque-badge--digestiva { background: #7ab6a3; }
.nut-bloque-badge--atracones { background: #9B7ED8; }

.nut-bloque h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1.25rem;
}

.nut-bloque-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nut-bloque-lista li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nut-bloque-lista li:last-child {
    border-bottom: none;
}

.nut-bloque-lista li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.nut-bloque-lista--tdah li svg { color: #e8a87c; }
.nut-bloque-lista--digestiva li svg { color: #7ab6a3; }
.nut-bloque-lista--atracones li svg { color: #9B7ED8; }

.nut-bloque-imagen img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ¿CÓMO ES LA EVALUACIÓN? */
.nut-eval-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nut-eval-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.nut-eval-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--color-primary);
}

.nut-eval-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nut-eval-card h3 svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--color-primary);
}

.nut-eval-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nut-eval-lista li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nut-eval-lista li svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

/* PROFESIONAL - Andrea */
.nut-pro-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nut-pro-card {
        grid-template-columns: 320px 1fr;
    }
}

.nut-pro-imagen {
    position: relative;
    overflow: hidden;
}

.nut-pro-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.nut-pro-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nut-pro-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nut-pro-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
}

.nut-pro-cargo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.nut-pro-content > p {
    font-size: 1rem;
    color: rgba(13, 27, 30, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.nut-pro-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: gap 0.3s ease;
    width: fit-content;
}

.nut-pro-link:hover {
    gap: 0.75rem;
}

/* CTA FINAL */
.nut-cta-final {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.nut-cta-final h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.nut-cta-final > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.nut-cta-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.nut-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.nut-check svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.nut-cta-botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.nut-cta-botones .btn-white {
    background: white;
    color: var(--color-dark-green);
    border-color: white;
}

.nut-cta-botones .btn-white:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* SEO LINKS */
.nut-seo-links {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.nut-seo-links p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.nut-seo-links a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.nut-seo-links a:hover {
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nut-section {
        padding: 3.5rem 0;
    }
    
    .nut-hero {
        min-height: 70vh;
    }
    
    .nut-eval-card {
        padding: 1.75rem;
    }
    
    .nut-pro-content {
        padding: 1.75rem;
    }
    
    .nut-cta-botones {
        flex-direction: column;
    }
    
    .nut-cta-botones .btn {
        width: 100%;
        justify-content: center;
    }
}
