/* ============================================
   🌿 Mentalmente Floreciendo — Design System
   Psic. Mariana Díaz de León
   Palette: Icy Gradient
   ============================================ */

/* === GOOGLE FONTS (Coolvetica → Raleway, Belgiano → Cormorant Garamond) === */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* === CSS VARIABLES === */
:root {
    /* Brand Colors — Icy Gradient */
    --color-mint: #ADCFCD;
    --color-teal: #73C1C4;
    --color-teal-dark: #37919D;
    --color-green-soft: #B9D892;
    --color-gray-light: #D9D9D9;

    /* Extended Palette */
    --color-teal-darker: #2A7A84;
    --color-teal-deepest: #1D5A62;
    --color-mint-light: #D4E8E6;
    --color-mint-lightest: #EDF5F4;
    --color-green-lighter: #D6EABB;
    --color-cream: #F8FAF5;
    --color-white: #FFFFFF;
    --color-dark: #1A2F2F;
    --color-dark-soft: #2D4A4A;
    --color-text: #2B3D3D;
    --color-text-light: #5A7474;
    --color-text-muted: #8FA5A5;

    /* Typography */
    --font-heading: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-accent: 'Raleway', sans-serif;

    /* Type Scale (Major Third 1.25) */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(55, 145, 157, 0.08);
    --shadow-md: 0 4px 16px rgba(55, 145, 157, 0.12);
    --shadow-lg: 0 8px 32px rgba(55, 145, 157, 0.15);
    --shadow-xl: 0 16px 48px rgba(55, 145, 157, 0.18);
    --shadow-glow: 0 0 40px rgba(115, 193, 196, 0.25);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --navbar-height: 80px;

    /* Status Colors */
    --color-success: #16a34a;
    --color-warning: #d97706;
    --color-danger: #dc2626;

    /* Extra type size */
    --text-md: 1rem;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-mint-lightest);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-teal), var(--color-teal-dark));
    border-radius: 4px;
}

/* Selection */
::selection {
    background: var(--color-teal);
    color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-teal-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-teal-darker);
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

p {
    margin-bottom: var(--space-4);
}

.section-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-teal-dark);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--color-teal-dark);
    display: inline-block;
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-light);
    max-width: 600px;
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-teal) 50%, var(--color-green-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container--narrow {
    max-width: var(--container-narrow);
}

section {
    padding: var(--space-24) 0;
    position: relative;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(55, 145, 157, 0.35);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(55, 145, 157, 0.45);
    color: var(--color-white);
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn--primary:hover::after {
    transform: translateX(100%);
}

.btn--secondary {
    background: transparent;
    color: var(--color-teal-dark);
    border: 2px solid var(--color-teal-dark);
}

.btn--secondary:hover {
    background: var(--color-teal-dark);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn--whatsapp {
    background: #25D366;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    color: var(--color-white);
}

.btn--sm {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
}

.btn--lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(173, 207, 205, 0.2);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.navbar__logo img {
    height: 48px;
    width: auto;
    border-radius: var(--radius-sm);
}

.navbar__brand {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
}

.navbar__brand span {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.navbar__links a {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-dark-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: var(--space-2) 0;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-teal-dark);
    transition: width var(--transition-base);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
    width: 100%;
}

.navbar__cta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Mobile Menu */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 1001;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--navbar-height);
    background: linear-gradient(160deg, var(--color-white) 0%, var(--color-mint-lightest) 40%, var(--color-mint-light) 100%);
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero__bg-shapes .shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-teal) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero__bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-green-soft) 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
}

.hero__bg-shapes .shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--color-mint) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    padding: var(--space-8) 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(55, 145, 157, 0.1);
    border: 1px solid rgba(55, 145, 157, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-teal-dark);
    margin-bottom: var(--space-6);
    opacity: 0;
}

.hero__badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-green-soft);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero__title {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: var(--space-6);
    color: var(--color-dark);
    opacity: 0;
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-light);
    margin-bottom: var(--space-8);
    max-width: 500px;
    line-height: 1.6;
    opacity: 0;
}

.hero__ctas {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    opacity: 0;
}

.hero__social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-10);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(173, 207, 205, 0.4);
    opacity: 0;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-teal-dark);
    line-height: 1;
}

.hero__stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-light);
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    opacity: 0;
}

.hero__image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
}

.hero__image-accent {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border: 2px solid var(--color-teal);
    border-radius: var(--radius-xl);
    opacity: 0.2;
    pointer-events: none;
}

.hero__floating-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    z-index: 3;
    opacity: 0;
}

.hero__floating-card--top {
    top: 10%;
    right: -20px;
    animation: floatCard 4s ease-in-out infinite;
}

.hero__floating-card--bottom {
    bottom: 15%;
    left: -30px;
    animation: floatCard 4s ease-in-out infinite 1s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero__floating-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero__floating-card .card-icon--teal {
    background: rgba(55, 145, 157, 0.12);
}

.hero__floating-card .card-icon--green {
    background: rgba(185, 216, 146, 0.3);
}

.hero__floating-card .card-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
}

.hero__floating-card .card-text span {
    display: block;
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--color-text-muted);
}

/* === SOCIAL PROOF BAR === */
.proof-bar {
    background: var(--color-dark);
    padding: var(--space-6) 0;
    position: relative;
    overflow: hidden;
}

.proof-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(55, 145, 157, 0.15), transparent);
}

.proof-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.proof-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
}

.proof-bar__item .icon {
    font-size: 1.5rem;
}

.proof-bar__item strong {
    font-weight: 700;
    color: var(--color-teal);
}

/* === SERVICES === */
.services {
    background: var(--color-mint-lightest);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-teal), transparent);
}

.services__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(173, 207, 205, 0.3);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-teal);
}

.service-card.featured {
    border-color: var(--color-teal-dark);
    box-shadow: var(--shadow-lg);
}

.service-card.featured::before {
    content: '⭐ Más solicitada';
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal));
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(55, 145, 157, 0.35);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: var(--space-5);
    background: linear-gradient(135deg, rgba(55, 145, 157, 0.1), rgba(185, 216, 146, 0.15));
}

.service-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.service-card__description {
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
}

.service-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-mint-light);
}

.service-card__price {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-teal-dark);
}

.service-card__price span {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
}

.service-card__duration {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

/* === SPECIALTIES (Areas de Atención) === */
.specialties {
    background: var(--color-white);
}

.specialties__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.specialties__grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.specialty-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--color-mint-lightest);
    border: 1px solid var(--color-mint);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-dark-soft);
    transition: all var(--transition-base);
    cursor: default;
}

.specialty-tag:hover {
    background: var(--color-teal-dark);
    color: var(--color-white);
    border-color: var(--color-teal-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.specialty-tag .tag-icon {
    font-size: 1.1rem;
}

/* === ABOUT === */
.about {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(173, 207, 205, 0.15));
    pointer-events: none;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.about__image {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.about__image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

.about__image-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about__content {
    padding: var(--space-4) 0;
}

.about__bio {
    font-size: var(--text-xl);
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-8);
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(173, 207, 205, 0.3);
}

.about__highlight .highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
    font-size: 1rem;
}

.about__highlight .highlight-text {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
}

.about__highlight .highlight-text span {
    display: block;
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    margin-top: 2px;
}

/* === PROCESS === */
.process {
    background: var(--color-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(55, 145, 157, 0.15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(185, 216, 146, 0.08), transparent 50%);
}

.process__header {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 2;
}

.process__header .section-title {
    color: var(--color-white);
}

.process__header .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 2;
}

.process__step {
    text-align: center;
    position: relative;
    padding: var(--space-8) var(--space-4);
}

.process__step-number {
    font-family: var(--font-heading);
    font-size: var(--text-7xl);
    font-weight: 900;
    background: linear-gradient(180deg, rgba(115, 193, 196, 0.3), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-4);
}

.process__step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-5);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(55, 145, 157, 0.4);
}

.process__step-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.process__step-desc {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* === BOOKING / AGENDAR === */
.booking {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-mint-lightest) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--space-24) 0 var(--space-20);
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-teal), transparent);
}

.booking__header {
    text-align: center;
    margin-bottom: var(--space-10);
}

/* --- Tab Selector --- */
.booking__selector {
    display: flex;
    gap: var(--space-4);
    max-width: 700px;
    margin: 0 auto var(--space-8);
    justify-content: center;
}

.booking__tab {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--color-white);
    border: 2px solid var(--color-mint);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    flex: 1;
    max-width: 320px;
    text-align: left;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
}

.booking__tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(55, 145, 157, 0.05), rgba(185, 216, 146, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.booking__tab:hover {
    border-color: var(--color-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.booking__tab:hover::before {
    opacity: 1;
}

.booking__tab.active {
    border-color: var(--color-teal-dark);
    background: linear-gradient(135deg, rgba(55, 145, 157, 0.08), rgba(185, 216, 146, 0.06));
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-teal-dark);
    transform: translateY(-2px);
}

.booking__tab-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(55, 145, 157, 0.12), rgba(185, 216, 146, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.booking__tab.active .booking__tab-icon {
    background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal));
    box-shadow: 0 4px 12px rgba(55, 145, 157, 0.35);
}

.booking__tab-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.booking__tab-title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-dark);
    transition: color var(--transition-base);
}

.booking__tab.active .booking__tab-title {
    color: var(--color-teal-dark);
}

.booking__tab-meta {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
}

.booking__tab-check {
    width: 24px;
    height: 24px;
    color: var(--color-mint);
    flex-shrink: 0;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.booking__tab.active .booking__tab-check {
    color: var(--color-teal-dark);
}

/* --- Calendar Container --- */
.booking__calendar-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto var(--space-10);
}

.booking__calendar-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(ellipse at center, rgba(115, 193, 196, 0.15), transparent 70%);
    border-radius: var(--radius-xl);
    pointer-events: none;
    z-index: 0;
}

.booking__calendar {
    position: relative;
    z-index: 1;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(173, 207, 205, 0.4);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    min-height: 650px;
    transition: box-shadow var(--transition-base);
}

.booking__calendar:hover {
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* --- Loading State --- */
.booking__calendar-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    background: var(--color-white);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.booking__calendar-loading span {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.booking__calendar-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--color-mint-light);
    border-top-color: var(--color-teal-dark);
    border-radius: 50%;
    animation: calSpin 0.8s linear infinite;
}

@keyframes calSpin {
    to {
        transform: rotate(360deg);
    }
}

/* --- Trust Badges --- */
.booking__trust {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.booking__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-light);
}

.booking__trust-icon {
    font-size: 1.2rem;
}

/* === CONSULTORIO === */
.consultorio {
    background: var(--color-white);
}

.consultorio__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.consultorio__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto var(--space-10);
}

.consultorio__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.consultorio__image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.consultorio__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.consultorio__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.consultorio__address,
.consultorio__schedule {
    background: var(--color-mint-lightest);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid rgba(173, 207, 205, 0.3);
}

.consultorio__address h3,
.consultorio__schedule h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.consultorio__map {
    margin-bottom: var(--space-5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(173, 207, 205, 0.3);
}

.consultorio__map iframe {
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
}

.schedule-table {
    width: 100%;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    border-collapse: collapse;
}

.schedule-table td {
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(173, 207, 205, 0.3);
}

.schedule-table td:first-child {
    font-weight: 600;
    color: var(--color-dark);
    width: 100px;
}

.schedule-table td:last-child {
    color: var(--color-text-light);
}

/* === FAQ === */
.faq {
    background: var(--color-mint-lightest);
}

.faq__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    overflow: hidden;
    border: 1px solid rgba(173, 207, 205, 0.3);
    transition: all var(--transition-base);
}

.faq__item:hover {
    border-color: var(--color-teal);
}

.faq__item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--color-teal);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-dark);
    text-align: left;
    gap: var(--space-4);
}

.faq__question:hover {
    color: var(--color-teal-dark);
}

.faq__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-mint-lightest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
    font-size: 1.2rem;
    color: var(--color-teal-dark);
}

.faq__item.active .faq__icon {
    background: var(--color-teal-dark);
    color: var(--color-white);
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq__answer-inner {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--color-text-light);
    font-size: var(--text-base);
    line-height: 1.8;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-teal-darker) 50%, var(--color-teal-deepest) 100%);
    padding: var(--space-20) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(185, 216, 146, 0.15), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(173, 207, 205, 0.1), transparent 50%);
}

.cta-section__inner {
    position: relative;
    z-index: 2;
}

.cta-section__title {
    font-size: var(--text-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta-section__subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.cta-section .btn--white {
    background: var(--color-white);
    color: var(--color-teal-dark);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* === FOOTER === */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-16) 0 var(--space-8);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer__brand img {
    height: 48px;
    border-radius: var(--radius-sm);
}

.footer__brand-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
}

.footer__about-text {
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.footer__social {
    display: flex;
    gap: var(--space-3);
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-base);
    font-size: 1.2rem;
}

.footer__social a:hover {
    background: var(--color-teal-dark);
    transform: translateY(-3px);
}

.footer__col h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: var(--space-5);
}

.footer__col ul {
    list-style: none;
}

.footer__col ul li {
    margin-bottom: var(--space-3);
}

.footer__col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer__col ul a:hover {
    color: var(--color-teal);
}

.footer__bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
}

.footer__bottom a {
    color: var(--color-teal);
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: var(--color-white);
}

.whatsapp-float .whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.25);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* === PAGE LOADER === */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-4);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader__logo {
    width: 80px;
    height: 80px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.page-loader__text {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-teal-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .hero__title {
        font-size: var(--text-5xl);
    }

    .hero__subtitle {
        margin: 0 auto var(--space-8);
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__social-proof {
        justify-content: center;
    }

    .hero__image {
        order: -1;
    }

    .hero__image-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }

    .hero__image-wrapper img {
        height: 450px;
    }

    .hero__floating-card--top {
        right: 10px;
    }

    .hero__floating-card--bottom {
        left: 10px;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .about__image-secondary {
        right: -15px;
        bottom: -15px;
    }

    .process__steps {
        grid-template-columns: 1fr 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-6xl: 3rem;
        --text-4xl: 2rem;
        --text-3xl: 1.5rem;
        --text-7xl: 3.5rem;
    }

    section {
        padding: var(--space-16) 0;
    }

    .navbar__links {
        display: none;
    }

    .navbar__cta .btn {
        display: none;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: var(--space-8);
        z-index: 999;
        padding: var(--space-16) var(--space-6);
    }

    .navbar__links.active a {
        font-size: var(--text-2xl);
        color: var(--color-dark);
    }

    .navbar__toggle {
        z-index: 1001;
    }

    .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__floating-card {
        display: none;
    }

    .hero__image-wrapper img {
        height: 380px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .about__highlights {
        grid-template-columns: 1fr;
    }

    .about__image-secondary {
        display: none;
    }

    .process__steps {
        grid-template-columns: 1fr;
    }

    .consultorio__gallery {
        grid-template-columns: 1fr;
    }

    .consultorio__info {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .cta-section__buttons {
        flex-direction: column;
        align-items: center;
    }

    .booking__selector {
        flex-direction: column;
        align-items: stretch;
    }

    .booking__tab {
        max-width: 100%;
    }

    .booking__calendar {
        min-height: 550px;
        border-radius: var(--radius-lg);
    }

    .booking__calendar #cal-inline-embed iframe {
        min-height: 550px !important;
    }

    .booking__trust {
        gap: var(--space-4);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }

    .hero__title {
        font-size: var(--text-3xl);
    }

    .proof-bar__inner {
        flex-direction: column;
        gap: var(--space-4);
    }

    .booking__trust {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }

    .booking__calendar {
        min-height: 500px;
    }
}

/* ============================================
   QUIZ COMPONENT 
   ============================================ */
.quiz-section {
    background-color: var(--color-mint-lightest);
    padding: var(--space-20) 0;
}

.quiz-container {
    max-width: 800px;
}

.quiz-header {
    margin-bottom: var(--space-12);
}

.text-center {
    text-align: center;
}

.quiz-box {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-progress-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--color-mint-light);
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-teal), var(--color-teal-dark));
    transition: width var(--transition-base);
}

.quiz-content {
    text-align: center;
}

.quiz-icon-large {
    font-size: 4rem;
    margin-bottom: var(--space-4);
}

.quiz-intro h3 {
    margin-bottom: var(--space-4);
    color: var(--color-teal-deepest);
}

.quiz-intro p {
    color: var(--color-text-light);
    margin-bottom: var(--space-8);
    font-size: var(--text-lg);
}

.quiz-questions {
    text-align: left;
}

.quiz-question-header {
    margin-bottom: var(--space-8);
}

.quiz-question-number {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.quiz-question-text {
    font-size: var(--text-2xl);
    color: var(--color-dark);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.quiz-option-btn {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    background: var(--color-white);
    border: 2px solid var(--color-mint-light);
    border-radius: var(--radius-md);
    text-align: left;
    transition: all var(--transition-fast);
}

.quiz-option-btn:hover {
    border-color: var(--color-teal);
    background: var(--color-mint-lightest);
}

.quiz-option-btn.selected {
    border-color: var(--color-teal-dark);
    background: var(--color-mint-lightest);
}

.quiz-option-btn .radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--color-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quiz-option-btn.selected .radio {
    border-color: var(--color-teal-dark);
}

.quiz-option-btn.selected .radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--color-teal-dark);
    border-radius: 50%;
}

.quiz-option-btn span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-dark-soft);
    font-size: var(--text-md);
}

.quiz-result-container {
    text-align: center;
}

.result-icon-box {
    font-size: 4rem;
    margin-bottom: var(--space-4);
}

.quiz-result-header h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.quiz-result-body p {
    font-size: var(--text-xl);
    color: var(--color-text-light);
}

/* Color codes for results */
.quiz-result--low h3 {
    color: var(--color-success);
}

.quiz-result--low .result-icon-box {
    filter: hue-rotate(-60deg);
}

/* Green tint */

.quiz-result--med h3 {
    color: var(--color-warning);
}

.quiz-result--med .result-icon-box {
    filter: hue-rotate(150deg);
}

/* Orange tint */

.quiz-result--high h3 {
    color: var(--color-danger);
}

.quiz-result--high .result-icon-box {
    filter: hue-rotate(100deg);
}

/* Red/Pink tint */

.quiz-result-cta-box {
    background: var(--color-cream);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    margin-top: var(--space-6);
    text-align: left;
}

.quiz-result-cta-box h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.quiz-result-cta-box p {
    font-size: var(--text-md);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .quiz-box {
        padding: var(--space-6) var(--space-4);
        min-height: 350px;
    }

    .quiz-question-text {
        font-size: var(--text-xl);
    }

    .quiz-option-btn {
        padding: var(--space-3) var(--space-4);
    }
}

/* ============================================
   TESTIMONIALS SECTION 
   ============================================ */
.testimonials {
    background-color: var(--color-mint-lightest);
    padding: var(--space-20) 0;
}

.testimonials__header {
    margin-bottom: var(--space-12);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    margin-bottom: var(--space-4);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: var(--text-md);
    color: var(--color-text);
    margin-bottom: var(--space-6);
    font-style: italic;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-mint-light);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-mint);
    color: var(--color-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: var(--text-lg);
    font-family: var(--font-heading);
    font-weight: 700;
}

.testimonial-avatar.avatar-v {
    background: #e0f2fe;
    /* Light blue */
    color: #0369a1;
}

.testimonial-avatar.avatar-a {
    background: #fce7f3;
    /* Light pink */
    color: #be185d;
}

.testimonial-avatar.avatar-c {
    background: #fef08a;
    /* Light yellow */
    color: #854d0e;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark);
    font-size: var(--text-md);
}

.testimonial-verified {
    font-size: var(--text-sm);
    color: var(--color-success);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.icon-verified {
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

@media (max-width: 991px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}