/* ================================================================
   KBELLA BEAUTY STUDIO — Unified Stylesheet
   Option B: Organic Design
   ================================================================
   Table of Contents:
   1.  CSS Variables
   2.  Reset & Base
   3.  Accessibility (Skip Link)
   4.  Dot Pattern Overlay
   5.  Scroll Reveal Animations
   6.  Keyframe Animations
   7.  Header / Navigation
   8.  Hamburger Menu
   9.  Mobile Nav Overlay
   10. Buttons
   11. SVG Wave Dividers
   12. Section Headers
   13. Page Hero (Servicos)
   14. Page Header (Inner Pages)
   15. Homepage — Hero
   16. Homepage — Services Section
   17. Homepage — Why Kbella
   18. Homepage — Testimonial
   19. Homepage — CTA Band
   20. Homepage — Location
   21. Servicos — Category Sections
   22. Servicos — Pill Tags & Expandable List
   23. Sobre — Historia (Drop Cap)
   24. Sobre — Valores
   25. Sobre — CTA Section
   26. Galeria — Gallery Grid
   27. Galeria — Lightbox
   28. Galeria — CTA Band (Olive Variant)
   29. Depoimentos — Aggregate Rating
   30. Depoimentos — Reviews
   31. FAQ — Accordion
   32. FAQ — CTA Band (Olive Variant)
   33. Contato — Contact Section
   34. 404 — Error Content
   35. Footer
   36. WhatsApp Floating Button
   37. Responsive — Tablet (768px)
   38. Responsive — Desktop (1024px)
   ================================================================ */


/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    --cream: #f5efe5;
    --blush: #ead9bb;
    --terracotta: #cfb48d;
    --terracotta-dark: #b9a07a;
    --olive: #54524a;
    --charcoal: #20201a;
    --sage: #8a8478;
    --sage-light: #a5a099;
    --gold: #cfb48d;
    --white: #ffffff;

    --font-display: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-pill: 50px;
    --radius-blob: 50% 50% 50% 50%;

    --shadow-soft: 0 8px 30px rgba(32, 32, 26, 0.08);
    --shadow-lifted: 0 16px 40px rgba(32, 32, 26, 0.12);
    --shadow-glow: 0 4px 20px rgba(207, 180, 141, 0.15);

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ============================================================
   3. ACCESSIBILITY (SKIP LINK)
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--charcoal);
    color: var(--cream);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}
.skip-link:focus {
    top: 0;
    clip: auto;
    overflow: visible;
}


/* ============================================================
   4. DOT PATTERN OVERLAY
   ============================================================ */
.dot-pattern {
    position: relative;
}
.dot-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(32, 32, 26, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
.dot-pattern > * {
    position: relative;
    z-index: 1;
}


/* ============================================================
   5. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }


/* ============================================================
   6. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}
@keyframes floatAlt {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-4deg); }
}
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}
@keyframes blobMorph {
    0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
    25% { border-radius: 50% 60% 40% 50% / 40% 50% 60% 50%; }
    50% { border-radius: 40% 50% 60% 50% / 60% 40% 50% 50%; }
    75% { border-radius: 50% 40% 50% 60% / 50% 50% 40% 60%; }
}
@keyframes sway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}


/* ============================================================
   7. HEADER / NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 239, 229, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(32, 32, 26, 0.05);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: 0 4px 30px rgba(32, 32, 26, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}
.logo img {
    height: 40px;
    width: auto;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-desktop a {
    display: inline-block;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 1.0rem;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: var(--radius-pill);
    transition: var(--transition);
}
.nav-desktop a:hover {
    background: var(--blush);
    color: var(--olive);
}
.nav-desktop a.active {
    background: rgba(207, 180, 141, 0.12);
    color: var(--olive);
}
.nav-desktop a.nav-cta {
    background: var(--terracotta);
    color: var(--charcoal);
}
.nav-desktop a.nav-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
}


/* ============================================================
   8. HAMBURGER MENU
   ============================================================ */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--blush);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
    gap: 5px;
    padding: 0;
}
.hamburger:hover {
    background: var(--terracotta);
}
.hamburger:hover span {
    background: var(--white);
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.active {
    background: var(--terracotta);
}
.hamburger.active span {
    background: var(--white);
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   9. MOBILE NAV OVERLAY
   ============================================================ */
.nav-mobile {
    position: fixed;
    inset: 0;
    background: rgba(245, 239, 229, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.nav-mobile.open {
    opacity: 1;
    visibility: visible;
}
.nav-mobile ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nav-mobile a {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 10px 30px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}
.nav-mobile a:hover {
    background: var(--blush);
    color: var(--olive);
}
.nav-mobile a.active {
    color: var(--olive);
}
.nav-mobile a.nav-cta {
    background: var(--terracotta);
    color: var(--charcoal);
    margin-top: 10px;
}


/* ============================================================
   10. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1.0rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary {
    background: var(--terracotta);
    color: var(--charcoal);
    border-color: var(--terracotta);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--olive);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--cream);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--cream);
    border-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lifted);
}
.btn-cream {
    background: var(--cream);
    color: var(--olive);
    border-color: var(--cream);
}
.btn-cream:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lifted);
}


/* ============================================================
   11. SVG WAVE DIVIDERS
   ============================================================ */
.wave-divider {
    display: block;
    width: 100%;
    height: auto;
    max-height: 50px;
    margin-top: -1px;
}
.wave-divider + section {
    padding-top: 50px;
}
.wave-divider-flip {
    transform: rotate(180deg);
    margin-bottom: -1px;
}


/* ============================================================
   12. SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-label {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(207, 180, 141, 0.15);
    border-radius: var(--radius-pill);
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--olive);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.section-desc {
    font-size: 1.05rem;
    color: rgba(32, 32, 26, 0.65);
    max-width: 500px;
    margin: 0 auto;
}


/* ============================================================
   13. PAGE HERO (Servicos page)
   ============================================================ */
.page-hero {
    padding: 140px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(234, 217, 187, 0.3) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(138, 132, 120, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Floating botanical decorations for page hero */
.page-hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}
.page-hero-deco-1 {
    top: 15%;
    left: 8%;
    animation: float 6s ease-in-out infinite;
}
.page-hero-deco-2 {
    bottom: 15%;
    right: 10%;
    animation: floatAlt 7s ease-in-out infinite;
}

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

.page-hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--blush);
    border-radius: var(--radius-pill);
    font-size: 1.0rem;
    font-weight: 500;
    color: var(--olive);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.page-hero-title span {
    color: var(--olive);
    font-style: italic;
}

.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(32, 32, 26, 0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================================
   14. PAGE HEADER (Inner Pages — Sobre, Galeria, Depoimentos,
       FAQ, Contato, 404)
   ============================================================ */
.page-header {
    padding: 140px 0 60px;
    background: var(--blush);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(207, 180, 141, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(138, 132, 120, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Floating botanical decorations on page header */
.page-header-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}
.page-header-deco-1 {
    top: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}
.page-header-deco-2 {
    bottom: 15%;
    right: 8%;
    animation: floatAlt 7s ease-in-out infinite;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.page-header h1 span {
    color: var(--olive);
    font-style: italic;
}
.page-header p {
    font-size: 1.1rem;
    color: rgba(32, 32, 26, 0.7);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 404-specific page header overrides */
.page-header .error-code {
    display: inline-block;
    padding: 6px 18px;
    background: var(--blush);
    border-radius: var(--radius-pill);
    font-size: 1.0rem;
    font-weight: 500;
    color: var(--olive);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}


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

/* Subtle radial glow */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(234, 217, 187, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    order: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--blush);
    border-radius: var(--radius-pill);
    font-size: 1.0rem;
    font-weight: 500;
    color: var(--olive);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-logo {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto 28px;
}
.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--terracotta);
    margin: 0 auto 28px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-title span {
    color: var(--olive);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(32, 32, 26, 0.7);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero image blob */
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    order: 1;
}
.hero-blob {
    width: 300px;
    height: 340px;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(32, 32, 26, 0.15);
    animation: blobMorph 8s ease-in-out infinite;
    position: relative;
}
.hero-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating botanical decorations */
.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
}
.hero-deco-1 {
    top: 15%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}
.hero-deco-2 {
    bottom: 20%;
    right: 8%;
    animation: floatAlt 7s ease-in-out infinite;
}
.hero-deco-3 {
    top: 60%;
    left: 15%;
    animation: float 8s ease-in-out infinite 1s;
}
.hero-deco-4 {
    top: 10%;
    right: 20%;
    animation: floatAlt 6s ease-in-out infinite 0.5s;
}


/* ============================================================
   16. HOMEPAGE — SERVICES SECTION
   ============================================================ */
.services {
    background: var(--blush);
    padding: 80px 0;
    position: relative;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lifted);
}
.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-image img {
    transform: scale(1.03);
}
.service-card-body {
    padding: 24px;
}
.service-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--charcoal);
}
.service-card-desc {
    font-size: 1.0rem;
    color: rgba(32, 32, 26, 0.6);
    line-height: 1.6;
}


/* ============================================================
   17. HOMEPAGE — WHY KBELLA
   ============================================================ */
.why-section {
    background: var(--cream);
    padding: 80px 0;
    position: relative;
}

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

.why-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    border-left: 4px solid var(--terracotta);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lifted);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--sage);
    border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathe 4s ease-in-out infinite;
}
.why-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--charcoal);
}
.why-desc {
    font-size: 1.0rem;
    color: rgba(32, 32, 26, 0.6);
    line-height: 1.6;
}


/* ============================================================
   18. HOMEPAGE — TESTIMONIAL
   ============================================================ */
.testimonial {
    background: var(--olive);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
/* Organic blob bg shapes */
.testimonial::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(138, 132, 120, 0.15);
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
    pointer-events: none;
}
.testimonial::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -8%;
    width: 250px;
    height: 250px;
    background: rgba(207, 180, 141, 0.1);
    border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
    pointer-events: none;
}

.testimonial-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 0.5;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
    margin-bottom: 28px;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 1.0rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.03em;
}


/* ============================================================
   19. HOMEPAGE — CTA BAND
   ============================================================ */
.cta-band {
    background: var(--terracotta);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.cta-band-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--charcoal);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.cta-band-subtitle {
    font-size: 1.05rem;
    color: rgba(32, 32, 26, 0.7);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.cta-band .btn-white {
    position: relative;
    z-index: 1;
}

/* CTA Band — Olive variant (used on Galeria, FAQ) */
.cta-band--olive {
    background: var(--olive);
}
.cta-band--olive .cta-band-title {
    color: var(--cream);
}
.cta-band--olive .cta-band-subtitle {
    color: rgba(245, 239, 229, 0.7);
}
.cta-band--olive::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(138, 132, 120, 0.15);
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
    pointer-events: none;
}


/* ============================================================
   20. HOMEPAGE — LOCATION
   ============================================================ */
.location {
    background: var(--cream);
    padding: 80px 0;
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
    align-items: center;
}

.location-block h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--olive);
    margin-bottom: 8px;
}
.location-block p,
.location-block a {
    font-size: 1.0rem;
    color: rgba(32, 32, 26, 0.7);
    line-height: 1.7;
}
.location-block a:hover {
    color: var(--olive);
}

.location-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    justify-content: center;
}
.btn-sm {
    font-size: 0.85rem;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-whatsapp svg {
    fill: #25D366;
}
.btn-whatsapp:hover svg {
    fill: #fff;
}

.location-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    min-height: 300px;
}
.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    display: block;
}


/* ============================================================
   21. SERVICOS — CATEGORY SECTIONS
   ============================================================ */
.svc-section {
    padding: 80px 0;
    position: relative;
}
.svc-section--cream {
    background: var(--cream);
}
.svc-section--blush {
    background: var(--blush);
}

/* Category icon */
.svc-category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--sage);
    border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathe 4s ease-in-out infinite;
}
.svc-section--blush .svc-category-icon {
    background: var(--terracotta);
}
.svc-category-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Service cards grid */
.svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.svc-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-left: 4px solid var(--terracotta);
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lifted);
}

.svc-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.svc-card-desc {
    font-size: 1.0rem;
    color: rgba(32, 32, 26, 0.6);
    line-height: 1.6;
}


/* ============================================================
   22. SERVICOS — PILL TAGS & EXPANDABLE LIST
   ============================================================ */
.svc-main-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}

.svc-tag {
    display: inline-block;
    padding: 10px 22px;
    background: var(--white);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1.0rem;
    font-weight: 500;
    color: var(--charcoal);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.svc-tag:hover {
    background: var(--terracotta);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Expandable service list */
.svc-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    opacity: 0;
}
.svc-expandable.expanded {
    opacity: 1;
}

.svc-expand-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 8px;
}

.svc-expand-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(32, 32, 26, 0.05);
    transition: var(--transition);
}
.svc-expand-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-soft);
}
.svc-expand-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    flex-shrink: 0;
}
.svc-expand-item span {
    font-size: 1.0rem;
    font-weight: 400;
    color: var(--charcoal);
}

/* Toggle button */
.svc-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    margin-top: 24px;
    background: var(--terracotta);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 1.0rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}
.svc-toggle-btn:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.svc-toggle-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.4s ease;
}
.svc-toggle-btn.active svg {
    transform: rotate(180deg);
}


/* ============================================================
   23. SOBRE — HISTORIA (Drop Cap)
   ============================================================ */
.historia {
    background: var(--cream);
    padding: 80px 0;
    position: relative;
}

.historia-content {
    max-width: 780px;
    margin: 0 auto;
}

.historia-content p {
    font-size: 1.05rem;
    color: rgba(32, 32, 26, 0.75);
    line-height: 1.85;
    margin-bottom: 28px;
}
.historia-content p:last-child {
    margin-bottom: 0;
}

.historia-content p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--olive);
    float: left;
    line-height: 0.85;
    margin-right: 10px;
    margin-top: 6px;
}


/* ============================================================
   24. SOBRE — VALORES
   ============================================================ */
.valores {
    background: var(--blush);
    padding: 80px 0;
    position: relative;
}

.valores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.valor-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--terracotta);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.valor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lifted);
}

.valor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--sage);
    border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathe 4s ease-in-out infinite;
}
.valor-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.valor-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.valor-desc {
    font-size: 1.0rem;
    color: rgba(32, 32, 26, 0.6);
    line-height: 1.7;
}


/* ============================================================
   25. SOBRE — CTA SECTION (Olive background)
   ============================================================ */
.cta-section {
    background: var(--olive);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(138, 132, 120, 0.12);
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--cream);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-section p {
    font-size: 1.05rem;
    color: rgba(245, 239, 229, 0.7);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   26. GALERIA — GALLERY GRID
   ============================================================ */
.gallery-section {
    background: var(--cream);
    padding: 80px 0;
    position: relative;
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lifted);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(32, 32, 26, 0.5) 0%, rgba(32, 32, 26, 0) 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    border-radius: var(--radius-md);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.0rem;
    font-weight: 500;
}

/* Masonry-style: alternate tall items */
.gallery-item:nth-child(1) img { aspect-ratio: 4 / 5; }
.gallery-item:nth-child(2) img { aspect-ratio: 1 / 1; }
.gallery-item:nth-child(3) img { aspect-ratio: 1 / 1; }
.gallery-item:nth-child(4) img { aspect-ratio: 4 / 5; }
.gallery-item:nth-child(5) img { aspect-ratio: 4 / 5; }
.gallery-item:nth-child(6) img { aspect-ratio: 1 / 1; }
.gallery-item:nth-child(7) img { aspect-ratio: 1 / 1; }
.gallery-item:nth-child(8) img { aspect-ratio: 4 / 5; }
.gallery-item:nth-child(9) img { aspect-ratio: 4 / 5; }
.gallery-item:nth-child(10) img { aspect-ratio: 1 / 1; }
.gallery-item:nth-child(11) img { aspect-ratio: 1 / 1; }
.gallery-item:nth-child(12) img { aspect-ratio: 4 / 5; }


/* ============================================================
   27. GALERIA — LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(32, 32, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.lightbox.active .lightbox-content img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(245, 239, 229, 0.8);
    font-family: var(--font-body);
    font-size: 1.0rem;
    font-weight: 400;
    white-space: nowrap;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(245, 239, 229, 0.1);
    border: 1px solid rgba(245, 239, 229, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2001;
}
.lightbox-close:hover {
    background: rgba(245, 239, 229, 0.2);
}
.lightbox-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--cream);
    stroke-width: 2;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(245, 239, 229, 0.1);
    border: 1px solid rgba(245, 239, 229, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2001;
}
.lightbox-nav:hover {
    background: rgba(245, 239, 229, 0.2);
}
.lightbox-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--cream);
    stroke-width: 2;
    fill: none;
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}


/* ============================================================
   28. DEPOIMENTOS — AGGREGATE RATING
   ============================================================ */
.aggregate-section {
    background: var(--blush);
    padding: 60px 0;
    position: relative;
}

.aggregate-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    box-shadow: var(--shadow-lifted);
    border-top: 4px solid var(--terracotta);
    position: relative;
    overflow: hidden;
}
.aggregate-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(234, 217, 187, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.aggregate-score {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 12px;
}

.aggregate-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}
.aggregate-stars svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.aggregate-text {
    font-size: 1rem;
    color: rgba(32, 32, 26, 0.65);
    line-height: 1.6;
}
.aggregate-text strong {
    color: var(--charcoal);
    font-weight: 600;
}


/* ============================================================
   29. DEPOIMENTOS — REVIEWS
   ============================================================ */
.reviews-section {
    background: var(--cream);
    padding: 80px 0;
    position: relative;
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--terracotta);
    position: relative;
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lifted);
}

/* Decorative quote mark */
.review-card .review-quote-deco {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--sage);
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.review-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-author {
    font-family: var(--font-body);
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--charcoal);
}

.review-date {
    font-family: var(--font-body);
    font-size: 1.0rem;
    color: rgba(32, 32, 26, 0.5);
    margin-top: 4px;
}


/* ============================================================
   30. FAQ — ACCORDION
   ============================================================ */
.faq-section {
    background: var(--cream);
    padding: 80px 0;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid transparent;
}
.faq-item.active {
    border-left-color: var(--terracotta);
    box-shadow: var(--shadow-lifted);
}
.faq-item:hover {
    box-shadow: var(--shadow-lifted);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    text-align: left;
    line-height: 1.4;
    gap: 16px;
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--olive);
}

.faq-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-pill);
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--charcoal);
    transition: var(--transition);
    line-height: 1;
}
.faq-item.active .faq-toggle {
    background: var(--terracotta);
    color: var(--charcoal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-answer-inner {
    padding: 0 24px 24px;
    font-size: 1.0rem;
    color: rgba(32, 32, 26, 0.7);
    line-height: 1.8;
}


/* ============================================================
   31. CONTATO — CONTACT SECTION
   ============================================================ */
.contact-section {
    background: var(--cream);
    padding: 80px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

/* Left Column — Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--sage);
    border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathe 4s ease-in-out infinite;
}
.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 4px;
}
.contact-item-label {
    font-family: var(--font-display);
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--olive);
}
.contact-item-value {
    font-size: 1.0rem;
    color: rgba(32, 32, 26, 0.7);
    line-height: 1.7;
}
.contact-item-value a {
    color: rgba(32, 32, 26, 0.7);
}
.contact-item-value a:hover {
    color: var(--olive);
}

/* Hours Table (Contact page variant) */
.hours-container {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}
.hours-container-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 16px;
}

/* Hours list (shared by Homepage location + Contact page) */
.hours-list {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}
.hours-row {
    display: flex;
    font-size: 1.0rem;
    color: rgba(32, 32, 26, 0.7);
    padding: 4px 0;
    gap: 16px;
}
.hours-row .day {
    font-weight: 500;
    color: var(--charcoal);
    min-width: 75px;
}
.hours-row.closed .time {
    color: var(--olive);
    font-weight: 500;
}

/* Contact page hours — spread layout with border */
.hours-container .hours-list {
    display: flex;
    width: 100%;
}
.hours-container .hours-row {
    justify-content: space-between;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(32, 32, 26, 0.06);
}
.hours-container .hours-row:last-child {
    border-bottom: none;
}

/* CTA Buttons */
.contact-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Right Column — Map */
.contact-map-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-map-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--charcoal);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    min-height: 350px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    display: block;
}

.map-references {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}
.map-references h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--olive);
    margin-bottom: 8px;
}
.map-references p {
    font-size: 1.0rem;
    color: rgba(32, 32, 26, 0.7);
    line-height: 1.7;
}


/* ============================================================
   32. 404 — ERROR CONTENT
   ============================================================ */

/* 404 body override: flex layout to push footer down */
body.page-404 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 404 page header overrides */
body.page-404 .page-header {
    padding-top: 100px;
    padding-bottom: 40px;
    background: var(--cream);
}
body.page-404 .page-header::before {
    top: 10%;
    right: -5%;
    left: auto;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(234, 217, 187, 0.35) 0%, transparent 70%);
}
body.page-404 .page-header::after {
    display: none;
}

body.page-404 .page-header h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    margin-bottom: 8px;
}

.error-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 80px;
    background: var(--cream);
    position: relative;
}
.error-content::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(138, 132, 120, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.error-inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Botanical SVG Illustration */
.error-illustration {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    animation: sway 6s ease-in-out infinite;
    transform-origin: bottom center;
}

.error-message {
    font-size: 1.1rem;
    color: rgba(32, 32, 26, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* 404 minimal footer overrides */
body.page-404 .footer {
    margin-top: auto;
}
body.page-404 .footer-inner {
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
body.page-404 .footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
}
body.page-404 .footer-brand p {
    max-width: 320px;
}
body.page-404 .footer-bottom {
    padding: 16px 24px;
}


/* ============================================================
   33. FOOTER
   ============================================================ */
.footer {
    background: var(--charcoal);
    color: rgba(245, 239, 229, 0.7);
    padding-top: 4px;
    position: relative;
}
.footer-accent {
    height: 4px;
    background: var(--terracotta);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.footer-inner {
    padding: 50px 24px 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
}

.footer-brand .logo-text {
    color: var(--cream);
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 1.0rem;
    line-height: 1.7;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-nav a {
    display: block;
    margin-bottom: 6px;
    font-size: 1.0rem;
    color: rgba(245, 239, 229, 0.7);
    transition: var(--transition);
}
.footer-nav a:hover {
    color: var(--terracotta);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 1.0rem;
    margin-bottom: 6px;
}
.footer-contact a:hover {
    color: var(--terracotta);
}
.footer-contact .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-contact .whatsapp-link svg {
    width: 16px;
    height: 16px;
    fill: #25D366;
    flex-shrink: 0;
}
.footer-contact .instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-contact .instagram-link svg {
    width: 16px;
    height: 16px;
    fill: #E1306C;
    flex-shrink: 0;
}
.footer-contact .facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-contact .facebook-link svg {
    width: 16px;
    height: 16px;
    fill: #1877F2;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px 24px;
    border-top: 1px solid rgba(245, 239, 229, 0.1);
    font-size: 1.0rem;
    color: rgba(245, 239, 229, 0.4);
    max-width: 1200px;
    margin: 0 auto;
}


/* ============================================================
   34. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    cursor: pointer;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: pulse-ring 2s ease-out infinite;
}


/* ============================================================
   35. RESPONSIVE — TABLET (768px)
   ============================================================ */
@media (min-width: 768px) {

    /* Homepage — Hero */
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .hero-content {
        text-align: left;
        order: 1;
    }
    .hero-logo {
        margin: 0 0 28px;
    }
    .hero-divider {
        margin: 0 0 28px;
    }
    .hero-subtitle {
        margin: 0 0 32px;
    }
    .hero-ctas {
        justify-content: flex-start;
    }
    .hero-image-wrap {
        order: 2;
    }
    .hero-blob {
        width: 360px;
        height: 400px;
    }

    /* Homepage — Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Homepage — Why Kbella */
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Homepage — Location */
    .location-info {
        text-align: center;
        align-items: center;
    }
    .location-buttons {
        justify-content: center;
    }
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
    .location-map {
        min-height: 100%;
    }
    .location-map iframe {
        height: 100%;
        min-height: 380px;
    }

    /* Servicos — Service cards */
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-expand-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Sobre — Page header */
    .page-header {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    /* Sobre — Valores */
    .valores-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Galeria — Gallery grid */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Depoimentos — Reviews */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ — Accordion */
    .faq-question {
        font-size: 1.1rem;
        padding: 24px 28px;
    }
    .faq-answer-inner {
        padding: 0 28px 28px;
    }

    /* Contato — Contact grid */
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .contact-map {
        flex: 1;
        min-height: 0;
    }
    .contact-map iframe {
        height: 100%;
        min-height: 350px;
    }

    /* 404 — Error illustration */
    .error-illustration {
        width: 240px;
        height: 240px;
    }
    body.page-404 .page-header {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr;
        text-align: left;
    }
    .footer-brand p {
        margin-left: 0;
        margin-right: 0;
    }
}


/* ============================================================
   36. RESPONSIVE — DESKTOP (1024px)
   ============================================================ */
@media (min-width: 1024px) {

    /* Navigation */
    .hamburger {
        display: none;
    }
    .nav-desktop {
        display: block;
    }

    /* Homepage — Hero blob */
    .hero-blob {
        width: 440px;
        height: 490px;
    }

    /* Homepage — Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Homepage — Why Kbella */
    .why-card {
        padding: 44px 32px;
    }

    /* Servicos — Service cards */
    .svc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .svc-expand-list {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Sobre — Valores */
    .valor-card {
        padding: 48px 32px;
    }

    /* Galeria — Gallery grid */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    /* Depoimentos — Reviews */
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* 404 — Error illustration */
    .error-illustration {
        width: 260px;
        height: 260px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}
