/* ======================================
   AZOMALLI — HOLISTIC THERAPY WEBSITE
   Aesthetic: Organic luxury / Sacred geometry
   Fonts: Cormorant Garamond + DM Sans
   Palette: Warm earth tones + sage green
====================================== */

/* ROOT & RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --sage: #5a7a5e;
    --sage-light: #8aab8e;
    --sage-deep: #2d4a3e;
    --gold: #a78464;
    --gold-light: #c9a882;
    --cream: #faf7f2;
    --warm-white: #fdfcfa;
    --ink: #1c1c1a;
    --ink-mid: #3d3d38;
    --stone: #7a7a70;
    --stone-light: #b5b5a8;
    --blush: #e8ddd4;
    --blush-dark: #d4c4b5;
    --glass: rgba(250, 247, 242, 0.85);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;

    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --shadow: 0 4px 24px rgba(28, 28, 26, 0.08);
    --shadow-md: 0 8px 40px rgba(28, 28, 26, 0.12);
    --shadow-lg: 0 20px 60px rgba(28, 28, 26, 0.16);

    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-left: 0;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
}

em {
    font-style: italic;
    color: var(--sage);
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--ink);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--stone);
    max-width: 560px;
    line-height: 1.7;
}

.section-header.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.section-header {
    margin-bottom: 60px;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: var(--sage);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid var(--sage);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--sage-deep);
    border-color: var(--sage-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90, 122, 94, 0.3);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--ink);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--blush-dark);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-ghost:hover {
    border-color: var(--sage);
    color: var(--sage);
    transform: translateY(-2px);
}

/* ======================================
   NAVBAR
====================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 30px rgba(28, 28, 26, 0.08);
    border-bottom: 1px solid rgba(180, 160, 140, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sage-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.02em;
}

.brand-icon {
    width: 34px;
    height: 34px;
    color: var(--sage);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-mid);
    font-size: 0.88rem;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--sage);
}

.nav-links .nav-cta {
    background: var(--sage);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    margin-left: 10px;
}

.nav-links .nav-cta:hover {
    background: var(--sage-deep);
    color: white;
}

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

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

/* ======================================
   HERO
====================================== */
.hero {
    min-height: 100vh;
    background: var(--cream);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: float 12s ease-in-out infinite;
    will-change: transform;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 171, 142, 0.6), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(167, 132, 100, 0.5), transparent);
    bottom: -50px;
    left: 10%;
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(90, 122, 94, 0.4), transparent);
    top: 30%;
    left: 40%;
    animation-delay: -8s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.98);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.0;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--stone);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mandala {
    width: 420px;
    height: 420px;
    position: relative;
}

.mandala-svg {
    width: 100%;
    height: 100%;
    animation: spin-slow 60s linear infinite;
    opacity: 1;
    will-change: transform;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ======================================
   NOSOTROS
====================================== */
.nosotros-section {
    background: var(--warm-white);
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.nosotros-text .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.lead-text {
    font-size: 1.1rem;
    color: var(--stone);
    line-height: 1.8;
    margin-top: 20px;
}

.nosotros-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mv-card {
    background: var(--cream);
    border: 1px solid var(--blush-dark);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}

.mv-card:hover {
    border-color: var(--sage-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.valores-card {
    grid-column: 1 / -1;
}

.mv-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.mv-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--sage-deep);
    margin-bottom: 10px;
}

.mv-card p,
.mv-card li {
    font-size: 0.92rem;
    color: var(--stone);
    line-height: 1.7;
}

.valores-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.valores-list li::before {
    content: '✦ ';
    color: var(--gold);
    font-size: 0.7rem;
}

/* ======================================
   SERVICIOS
====================================== */
.servicios-section {
    background: var(--cream);
}

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

.servicio-card {
    background: var(--warm-white);
    border: 1px solid var(--blush-dark);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.servicio-card::before {
    content: attr(data-index);
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--blush-dark);
    line-height: 1;
    transition: color var(--transition);
}

.servicio-card:hover {
    border-color: var(--sage);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.servicio-card:hover::before {
    color: rgba(90, 122, 94, 0.15);
}

.servicio-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.servicio-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 12px;
}

.servicio-card p {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.7;
    margin-bottom: 20px;
}

.servicio-link {
    color: var(--sage);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: gap var(--transition);
}

.servicio-link:hover {
    color: var(--sage-deep);
    letter-spacing: 0.02em;
}

/* ======================================
   TERAPEUTAS
====================================== */
.terapeutas-section {
    background: var(--warm-white);
}

.terapeutas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.terapeuta-card {
    display: flex;
    gap: 24px;
    background: var(--cream);
    border: 1px solid var(--blush-dark);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.terapeuta-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.terapeuta-foto {
    flex-shrink: 0;
    position: relative;
}

.foto-placeholder {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage-deep));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.terapeuta-badge {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.terapeuta-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.terapeuta-especialidad {
    font-size: 0.82rem;
    color: var(--sage);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.terapeuta-bio {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.65;
    margin-bottom: 14px;
}

.terapeuta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.terapeuta-tags span {
    background: rgba(90, 122, 94, 0.1);
    color: var(--sage);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
}

.terapeuta-precio {
    font-size: 0.85rem;
    color: var(--stone);
    margin-bottom: 16px;
}

.terapeuta-precio strong {
    color: var(--ink);
}

.btn-terapeuta {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--sage);
    color: var(--sage);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}

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

/* ======================================
   EVENTOS
====================================== */
.eventos-section {
    background: var(--cream);
}

.eventos-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--blush-dark);
    padding-bottom: 0;
}

.evento-tab {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--stone);
    padding: 12px 24px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
}

.evento-tab.active,
.evento-tab:hover {
    color: var(--sage);
    border-bottom-color: var(--sage);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.eventos-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.evento-card {
    background: var(--warm-white);
    border: 1px solid var(--blush-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.evento-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.evento-banner {
    height: 160px;
    overflow: hidden;
}

.evento-card.featured .evento-banner {
    height: 200px;
}

.evento-banner-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.evento-banner-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    font-style: italic;
    line-height: 1.3;
}

.evento-info {
    padding: 24px;
}

.evento-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.evento-fecha {
    font-size: 0.8rem;
    color: var(--stone);
    font-weight: 500;
}

.evento-precio-badge {
    background: var(--sage);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.evento-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.evento-info p {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 12px;
}

.evento-lugar {
    font-size: 0.82rem;
    color: var(--stone-light);
    margin-bottom: 16px;
}

.btn-evento {
    display: inline-block;
    background: var(--sage);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-evento:hover {
    background: var(--sage-deep);
    transform: translateY(-2px);
}

.pasados-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.pasado-item {
    display: flex;
    gap: 24px;
    background: var(--warm-white);
    border: 1px solid var(--blush-dark);
    border-radius: var(--radius);
    padding: 28px;
}

.pasado-foto-placeholder {
    width: 100px;
    height: 100px;
    background: var(--blush);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.pasado-fecha {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pasado-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 6px 0 8px;
}

.pasado-info>p {
    font-size: 0.88rem;
    color: var(--stone);
    margin-bottom: 14px;
}

.testimonio {
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.testimonio-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--ink-mid);
    margin-bottom: 4px;
}

.testimonio-autor {
    font-size: 0.78rem;
    color: var(--stone);
}

/* ======================================
   TALLERES
====================================== */
.talleres-section {
    background: var(--warm-white);
}

.talleres-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.talleres-col {
    background: var(--cream);
    border: 1px solid var(--blush-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.talleres-col-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--blush-dark);
}

.talleres-col-icon {
    font-size: 2rem;
}

.talleres-col-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--sage-deep);
}

.taller-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--blush);
}

.taller-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.taller-nombre {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.taller-detalle {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.taller-item p {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.65;
    margin-bottom: 10px;
}

.taller-link {
    color: var(--sage);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: letter-spacing var(--transition);
}

.taller-link:hover {
    letter-spacing: 0.03em;
}

/* ======================================
   QUIZ
====================================== */
.quiz-section {
    background: var(--cream);
}

.quiz-container {
    max-width: 720px;
    margin: 0 auto;
}

.quiz-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    justify-content: center;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--blush-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--stone-light);
    background: var(--warm-white);
    transition: all var(--transition);
    flex-shrink: 0;
}

.step-num.active {
    border-color: var(--sage);
    color: var(--sage);
    background: rgba(90, 122, 94, 0.1);
}

.step-num.done {
    border-color: var(--sage);
    background: var(--sage);
    color: white;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--blush-dark);
    max-width: 80px;
    transition: background var(--transition);
}

.step-line.active {
    background: var(--sage);
}

.step-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ink);
    text-align: center;
    margin-bottom: 36px;
}

.quiz-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--warm-white);
    border: 1px solid var(--blush-dark);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 28px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field-group label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-mid);
}

.field-group label small {
    color: var(--stone);
    font-weight: 400;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quiz-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--blush-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--ink);
    background: var(--cream);
    transition: border-color var(--transition);
    outline: none;
    appearance: none;
}

.quiz-input:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(90, 122, 94, 0.1);
}

.quiz-textarea {
    min-height: 100px;
    resize: vertical;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-option,
.check-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--ink-mid);
    cursor: pointer;
    padding: 8px 14px;
    border: 1.5px solid var(--blush-dark);
    border-radius: var(--radius-xl);
    background: var(--cream);
    transition: all var(--transition);
    user-select: none;
}

.radio-option input,
.check-option input {
    display: none;
}

.radio-option:has(input:checked),
.check-option:has(input:checked) {
    border-color: var(--sage);
    background: rgba(90, 122, 94, 0.1);
    color: var(--sage);
}

.radio-option:hover,
.check-option:hover {
    border-color: var(--sage-light);
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.btn-quiz-next,
.btn-quiz-submit {
    background: var(--sage);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    margin-left: auto;
}

.btn-quiz-next:hover,
.btn-quiz-submit:hover {
    background: var(--sage-deep);
    transform: translateY(-2px);
}

.btn-quiz-back {
    background: transparent;
    color: var(--stone);
    border: 1.5px solid var(--blush-dark);
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-quiz-back:hover {
    border-color: var(--sage);
    color: var(--sage);
}

/* Quiz Results */
.result-header {
    text-align: center;
    margin-bottom: 40px;
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.result-header h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.result-header p {
    color: var(--stone);
    font-size: 1rem;
}

.result-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.result-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--warm-white);
    border: 1.5px solid var(--blush-dark);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.result-card:first-child {
    border-color: var(--sage);
    background: rgba(90, 122, 94, 0.04);
}

.result-rank {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.result-card:first-child .result-rank {
    background: var(--sage);
    color: white;
}

.result-card:not(:first-child) .result-rank {
    background: var(--blush);
    color: var(--stone);
}

.result-card-info h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.result-card-info p {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 6px;
}

.result-terapeuta-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sage);
}

.result-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--blush-dark);
}

.result-footer p {
    color: var(--stone);
    margin-bottom: 20px;
}

.result-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ======================================
   PRUEBAS PSICOLOGICAS
====================================== */
.pruebas-section {
    background: var(--warm-white);
}

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

.prueba-card {
    background: var(--cream);
    border: 1px solid var(--blush-dark);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.prueba-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-light), var(--gold-light));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.prueba-card:hover {
    border-color: var(--sage-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.prueba-card:hover::after {
    transform: scaleX(1);
}

.prueba-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.prueba-tag {
    display: inline-block;
    background: rgba(90, 122, 94, 0.1);
    color: var(--sage);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.prueba-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 12px;
}

.prueba-card p {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-prueba {
    display: inline-block;
    color: var(--sage);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1.5px solid var(--sage-light);
    padding-bottom: 2px;
    transition: all var(--transition);
}

.btn-prueba:hover {
    color: var(--sage-deep);
    border-color: var(--sage-deep);
    letter-spacing: 0.02em;
}

/* ======================================
   CTA SECTION
====================================== */
.cta-section {
    background: var(--sage-deep);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 171, 142, 0.2), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.cta-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.cta-section em {
    color: var(--gold-light);
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 16px 44px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-cta:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(167, 132, 100, 0.4);
}

/* ======================================
   FOOTER
====================================== */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--sage-light);
    color: var(--sage-light);
    background: rgba(90, 122, 94, 0.15);
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li,
.footer-col a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition);
    line-height: 1.5;
}

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

.btn-contacto-footer {
    display: inline-block;
    margin-top: 20px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: all var(--transition);
}

.btn-contacto-footer:hover {
    color: white;
    border-color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ======================================
   ANIMATIONS & SCROLL
====================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1024px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .eventos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .evento-card.featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--blush-dark);
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 16px;
    }

    .nav-links .nav-cta {
        text-align: center;
        border-radius: var(--radius-sm);
        margin-left: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .nosotros-cards {
        grid-template-columns: 1fr;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .terapeutas-grid {
        grid-template-columns: 1fr;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
    }

    .talleres-grid {
        grid-template-columns: 1fr;
    }

    .pruebas-grid {
        grid-template-columns: 1fr;
    }

    .pasados-grid {
        grid-template-columns: 1fr;
    }

    .terapeuta-card {
        flex-direction: column;
    }

    .check-grid {
        grid-template-columns: 1fr;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .valores-list {
        grid-template-columns: 1fr;
    }

    body {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        text-align: center;
    }

    .quiz-fields {
        padding: 24px;
    }

    .result-actions {
        flex-direction: column;
    }
}