@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: 400px;
    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.9rem;
    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.75rem;
    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;
    background: linear-gradient(135deg, var(--color-dark-green) 0%, #3d5a53 100%);
}

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

.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.95), rgba(45, 74, 67, 0.85), rgba(45, 74, 67, 0.7));
    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;
    }
}
