/*
 * ═══════════════════════════════════════════════════════════════════════════════
 * MIDNIGHT NEO-NOIR DESIGN SYSTEM
 * Lili Silva - Fisioterapia Dermatofuncional
 * "Luxury spa meets neo-noir cinema"
 * ═══════════════════════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════════════════════
   1. DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════════════════════ */

:root {
    /* CANVAS (Backgrounds) */
    --midnight-void: #080404;
    --midnight-bloom: #1a0f0f;
    --midnight-deep: #0d0808;

    /* LUMINOUS ACCENTS (Neon Filament System) */
    --neon-filament: #ffcdb2;
    --neon-plasma: #ffb4a2;
    --neon-glass: rgba(255, 205, 178, 0.03);
    --neon-pulse: #ffc4aa;
    --neon-glow-sm: 0 0 10px rgba(255, 205, 178, 0.3);
    --neon-glow-md: 0 0 20px rgba(255, 205, 178, 0.4);
    --neon-glow-lg: 0 0 40px rgba(255, 205, 178, 0.3);

    /* TYPOGRAPHY COLORS */
    --text-luxe: #ffe5d9;
    --text-muted: #b08d85;
    --text-dim: #6b5a54;

    /* FUNCTIONAL */
    --success: #7dd989;
    --success-glow: rgba(125, 217, 137, 0.4);
    --warning: #FFD93D;
    --google-stars: #FBBC05;
    --google-blue: #4285F4;
    --whatsapp: #25D366;
    --whatsapp-glow: rgba(37, 211, 102, 0.4);

    /* LEGACY MAPPINGS (for easier transition) */
    --verde-sage: var(--neon-filament);
    --verde-sage-light: var(--neon-plasma);
    --rosa-protea: var(--neon-filament);
    --rosa-protea-light: var(--neon-plasma);
    --rosa-nude: var(--midnight-bloom);
    --cream: var(--midnight-void);
    --cream-dark: var(--midnight-deep);
    --text-dark: var(--text-luxe);
    --text-light: var(--text-muted);
    --white: var(--text-luxe);

    /* ANIMATIONS */
    --spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --smooth-out: cubic-bezier(0.22, 0.61, 0.36, 1);
    --snap-in: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-luxe: cubic-bezier(0.25, 0.8, 0.25, 1);

    /* DELIGHT SYSTEM */
    --delight-gold: #FFD93D;
    --delight-green: #7dd989;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   2. BASE RESETS & TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    background-color: var(--midnight-void);
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: var(--text-luxe);
    background-color: var(--midnight-void);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-luxe);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
    color: var(--text-muted);
}

a {
    color: var(--neon-filament);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-luxe);
}

/* Text Accent */
.text-accent, h1 span, h2 span {
    color: var(--neon-filament);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   3. FILM GRAIN TEXTURE (Global Atmosphere)
   ═══════════════════════════════════════════════════════════════════════════════ */

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4. NAVBAR COMPONENT
   ═══════════════════════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s var(--ease-luxe);
    background: transparent;
}

.navbar.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

.navbar.revealed {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    background: rgba(8, 4, 4, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 205, 178, 0.1);
}

.navbar.scrolled {
    background: rgba(8, 4, 4, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 1002;
}

.logo-icon {
    width: 45px;
    height: 45px;
    filter: drop-shadow(var(--neon-glow-sm));
    transition: filter 0.3s ease;
}

.logo:hover .logo-icon {
    filter: drop-shadow(var(--neon-glow-md));
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-luxe);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-filament);
    box-shadow: var(--neon-glow-sm);
    transition: width 0.3s ease;
}

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

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

/* Nav CTA Button */
.nav-cta {
    background: var(--neon-filament) !important;
    color: var(--midnight-void) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease !important;
    box-shadow: var(--neon-glow-sm);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--text-luxe) !important;
    transform: translateY(-2px);
    box-shadow: var(--neon-glow-md);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    background: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--neon-filament);
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
    box-shadow: var(--neon-glow-sm);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 4, 4, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--midnight-bloom);
    z-index: 1001;
    transition: right 0.4s var(--ease-luxe);
    display: flex;
    flex-direction: column;
    padding: 100px 2rem 2rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 205, 178, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-links a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 205, 178, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--text-luxe);
    padding-left: 10px;
    text-shadow: var(--neon-glow-sm);
}

.mobile-nav-cta {
    margin-top: 2rem;
    background: var(--neon-filament) !important;
    color: var(--midnight-void) !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    border-bottom: none !important;
    box-shadow: var(--neon-glow-md);
}

.mobile-nav-cta:hover {
    background: var(--text-luxe) !important;
    padding-left: 2rem !important;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 205, 178, 0.1);
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mobile-nav-contact a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-nav-contact a:hover {
    color: var(--neon-filament);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   5. HERO CINEMATIC SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero-cinematic {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, var(--midnight-bloom) 0%, var(--midnight-void) 70%);
    overflow: hidden;
}

.hero-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

/* Dust Particles Container */
.dust-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.mote {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    filter: blur(0.5px);
}

/* Hero Graphic (Flower) */
.hero-graphic {
    width: 50vmin;
    height: 50vmin;
    max-width: 600px;
    position: relative;
    z-index: 10;
    margin-bottom: 4vh;
    filter: drop-shadow(0 0 15px rgba(255, 180, 162, 0.4)) drop-shadow(0 0 40px rgba(229, 152, 155, 0.15));
    will-change: transform, filter;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.hero-graphic svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    shape-rendering: geometricPrecision;
}

#flower-pivot {
    transform-origin: 100px 100px;
}

.petal-path {
    fill: var(--neon-glass);
    stroke: var(--neon-filament);
    stroke-width: 0.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    opacity: 0;
}

.petal-vein {
    fill: none;
    stroke: var(--neon-plasma);
    stroke-width: 0.4;
    opacity: 0;
}

/* Brand Container */
.brand-container {
    text-align: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
}

h1.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-luxe);
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 0 25px rgba(255, 205, 178, 0.4);
    background: linear-gradient(to bottom, #fff 0%, #ffcdb2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    display: block;
    margin-top: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    letter-spacing: 0.4em;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 300;
}

/* Skip Intro Button */
.skip-intro {
    position: absolute;
    bottom: 100px;
    right: 30px;
    background: rgba(255, 205, 178, 0.1);
    border: 1px solid rgba(255, 205, 178, 0.3);
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 20;
}

.skip-intro:hover {
    background: rgba(255, 205, 178, 0.2);
    color: var(--text-luxe);
    border-color: var(--neon-filament);
}

.skip-intro.visible {
    opacity: 1;
}

.skip-intro.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    z-index: 20;
}

.scroll-indicator .scroll-text {
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   6. SECTION LAYOUTS
   ═══════════════════════════════════════════════════════════════════════════════ */

section {
    padding: 6rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-filament);
    margin-bottom: 1rem;
    text-shadow: var(--neon-glow-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-luxe);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   7. ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.about {
    background: var(--midnight-bloom);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 205, 178, 0.1);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 205, 178, 0.2);
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
    box-shadow: inset var(--neon-glow-sm);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--neon-filament);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--text-luxe);
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--neon-filament);
    font-style: italic;
    text-shadow: var(--neon-glow-sm);
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--neon-glass);
    border: 1px solid rgba(255, 205, 178, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--neon-glow-sm);
}

.highlight-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-luxe);
    margin-bottom: 0.25rem;
}

.highlight-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   8. SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.services {
    background: radial-gradient(ellipse at center, var(--midnight-bloom) 0%, var(--midnight-void) 100%);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--midnight-deep);
    border: 1px solid rgba(255, 205, 178, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-filament), var(--neon-plasma));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: var(--neon-glow-sm);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 205, 178, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--neon-glow-sm);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Featured Service Card */
.service-card.featured {
    background: linear-gradient(135deg, rgba(255, 205, 178, 0.1), rgba(255, 180, 162, 0.05));
    border: 1px solid rgba(255, 205, 178, 0.3);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-card.featured .featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--neon-filament);
    color: var(--midnight-void);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--neon-glass);
    border: 1px solid rgba(255, 205, 178, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--neon-glow-sm);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-luxe);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   9. BLOG SECTION (Index Page Preview)
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog {
    background: var(--midnight-bloom);
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: var(--midnight-deep);
    border: 1px solid rgba(255, 205, 178, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
}

.blog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 205, 178, 0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 205, 178, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--neon-glow-sm);
}

.blog-card:hover::after {
    transform: translateX(100%);
}

.blog-card-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 205, 178, 0.15), rgba(255, 180, 162, 0.08));
    position: relative;
}

.blog-card-header.rosa {
    background: linear-gradient(135deg, rgba(255, 180, 162, 0.15), rgba(255, 205, 178, 0.08));
}

.blog-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 205, 178, 0.1);
    border: 1px solid rgba(255, 205, 178, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-luxe);
}

.blog-card-header .reading-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-benefits {
    list-style: none;
}

.blog-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-benefits li::before {
    content: '✓';
    color: var(--neon-filament);
    font-weight: 700;
    flex-shrink: 0;
    text-shadow: var(--neon-glow-sm);
}

.blog-card-footer {
    padding: 0 2rem 2rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-filament);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--text-luxe);
    gap: 0.75rem;
    text-shadow: var(--neon-glow-sm);
}

.blog-section-cta {
    text-align: center;
    margin-top: 3rem;
}

.blog-section-cta .btn {
    display: inline-flex;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   10. DIFFERENTIALS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.differentials {
    background: var(--midnight-void);
    position: relative;
    overflow: hidden;
}

.differentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffcdb2' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.diff-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.diff-item {
    text-align: center;
    padding: 2rem;
}

.diff-icon {
    width: 70px;
    height: 70px;
    background: var(--neon-glass);
    border: 1px solid rgba(255, 205, 178, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--neon-glow-md);
}

.diff-item h3 {
    font-size: 1.3rem;
    color: var(--text-luxe);
    margin-bottom: 0.75rem;
}

.diff-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   11. GOOGLE REVIEWS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.google-reviews-section {
    padding: 5rem 5%;
    background: var(--midnight-void);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--midnight-deep);
    padding: 1rem 2rem;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 205, 178, 0.1);
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-logo svg {
    width: 24px;
    height: 24px;
}

.google-logo span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-luxe);
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 205, 178, 0.2);
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-luxe);
}

.rating-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--google-stars);
    font-size: 1.1rem;
}

.review-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--midnight-bloom);
    border: 1px solid rgba(255, 205, 178, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 205, 178, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.review-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--neon-filament);
    opacity: 0.1;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--midnight-void);
    flex-shrink: 0;
    background: var(--neon-filament);
}

.review-card:nth-child(2) .reviewer-avatar { background: var(--neon-plasma); }
.review-card:nth-child(3) .reviewer-avatar { background: var(--text-muted); }
.review-card:nth-child(4) .reviewer-avatar { background: var(--neon-filament); }
.review-card:nth-child(5) .reviewer-avatar { background: var(--neon-plasma); }
.review-card:nth-child(6) .reviewer-avatar { background: var(--text-muted); }

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-luxe);
    margin-bottom: 0.25rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-stars {
    display: flex;
    gap: 1px;
}

.review-stars .star {
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.google-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    color: var(--google-blue);
    background: rgba(66, 133, 244, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.google-verified svg {
    width: 12px;
    height: 12px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Featured Review */
.review-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 205, 178, 0.1), rgba(255, 180, 162, 0.05));
    border: 1px solid rgba(255, 205, 178, 0.2);
}

.review-card.featured .reviewer-avatar {
    background: var(--text-luxe);
    color: var(--midnight-void);
}

.review-card.featured .reviewer-name {
    color: var(--text-luxe);
}

.review-card.featured .review-text {
    color: var(--text-luxe);
}

.review-card.featured::before {
    color: var(--text-luxe);
    opacity: 0.1;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--midnight-deep);
    color: var(--text-luxe);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 205, 178, 0.2);
    transition: all 0.3s ease;
}

.google-reviews-link:hover {
    background: var(--neon-filament);
    color: var(--midnight-void);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow-md);
}

.google-reviews-link svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   12. LOCATION SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.location {
    background: var(--midnight-bloom);
}

.location-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h2 {
    font-size: 2.2rem;
    color: var(--text-luxe);
    margin-bottom: 1.5rem;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--midnight-deep);
    border: 1px solid rgba(255, 205, 178, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--neon-glow-sm);
}

.location-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-luxe);
    margin-bottom: 0.25rem;
}

.location-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.location-map {
    background: var(--midnight-deep);
    border: 1px solid rgba(255, 205, 178, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.map-responsive {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 20px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
    filter: grayscale(100%) invert(92%) contrast(90%);
}

.google-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--midnight-deep);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-luxe);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    border: 1px solid rgba(255, 205, 178, 0.1);
}

.google-badge svg {
    width: 16px;
    height: 16px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(8, 4, 4, 0.95));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-radius: 0 0 20px 20px;
}

.location-map:hover .map-overlay {
    transform: translateY(0);
}

.map-overlay-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.map-overlay-text {
    color: var(--text-luxe);
}

.map-overlay-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.map-overlay-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.map-overlay-btn {
    background: var(--neon-filament);
    color: var(--midnight-void);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.map-overlay-btn:hover {
    background: var(--text-luxe);
    box-shadow: var(--neon-glow-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   13. INSTAGRAM SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.instagram {
    background: var(--midnight-void);
    text-align: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: var(--text-luxe);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.4);
}

.instagram-feed-container {
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.insta-placeholder {
    aspect-ratio: 1;
    background: var(--midnight-bloom);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-filament);
    transition: all 0.3s ease;
    border: 2px dashed rgba(255, 205, 178, 0.2);
    cursor: pointer;
}

.insta-placeholder:hover {
    transform: scale(1.03);
    border-color: var(--neon-filament);
    box-shadow: var(--neon-glow-sm);
}

.insta-placeholder span {
    font-size: 0.7rem;
    margin-top: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instagram-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.instagram-cta p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--neon-filament);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--neon-filament);
    transition: all 0.3s ease;
}

.instagram-follow-btn:hover {
    background: var(--neon-filament);
    color: var(--midnight-void);
    box-shadow: var(--neon-glow-md);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   14. CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.cta {
    background: linear-gradient(135deg, rgba(255, 205, 178, 0.15), rgba(255, 180, 162, 0.1)), var(--midnight-bloom);
    text-align: center;
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 205, 178, 0.1) 0%, transparent 70%);
}

.cta h2 {
    color: var(--text-luxe);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta .btn-whatsapp {
    background: var(--whatsapp);
    color: var(--text-luxe);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 10px 30px var(--whatsapp-glow);
    position: relative;
    z-index: 1;
}

.cta .btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--whatsapp-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   15. FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */

.footer {
    background: var(--midnight-deep);
    color: var(--text-muted);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 205, 178, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .logo-text {
    color: var(--text-luxe);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 205, 178, 0.1);
    border: 1px solid rgba(255, 205, 178, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--neon-filament);
    color: var(--midnight-void);
    transform: translateY(-3px);
    box-shadow: var(--neon-glow-sm);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-luxe);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-filament);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 205, 178, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   16. WHATSAPP FLOAT BUTTON
   ═══════════════════════════════════════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-luxe);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 25px var(--whatsapp-glow);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 25px var(--whatsapp-glow); }
    50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   17. BUTTONS
   ═══════════════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--neon-filament);
    color: var(--midnight-void);
    box-shadow: var(--neon-glow-md);
}

.btn-primary:hover {
    background: var(--text-luxe);
    transform: translateY(-3px);
    box-shadow: var(--neon-glow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-filament);
    border: 1px solid var(--neon-filament);
}

.btn-secondary:hover {
    background: var(--neon-filament);
    color: var(--midnight-void);
    box-shadow: var(--neon-glow-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   18. UTILITIES
   ═══════════════════════════════════════════════════════════════════════════════ */

.neon-glow {
    box-shadow: var(--neon-glow-md);
}

.neon-text {
    color: var(--neon-filament);
    text-shadow: var(--neon-glow-sm);
}

.glass-card {
    background: rgba(255, 205, 178, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 205, 178, 0.1);
    border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   19. RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .location-container {
        grid-template-columns: 1fr;
    }

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

    .footer-social {
        justify-content: center;
    }

    .google-rating-badge {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
    }

    .rating-info {
        padding-left: 0;
        padding-top: 0.75rem;
        border-left: none;
        border-top: 1px solid rgba(255, 205, 178, 0.2);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-graphic {
        width: 70vmin;
        max-width: 350px;
    }

    h1.brand-name {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: 0.15em;
    }

    .brand-subtitle {
        font-size: clamp(0.6rem, 2.5vw, 0.8rem);
        letter-spacing: 0.3em;
    }

    .skip-intro {
        bottom: 80px;
        right: 20px;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .about-image {
        max-width: 300px;
    }

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

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

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-responsive {
        padding-bottom: 80%;
    }

    .map-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent 0%, rgba(8, 4, 4, 0.9) 50%);
    }

    section {
        padding: 4rem 5%;
    }

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

    .review-card.featured {
        grid-column: 1;
    }

    .cta {
        padding: 3rem 5%;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-image {
        max-width: 280px;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   20. REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-graphic {
        filter: drop-shadow(0 0 15px rgba(255, 180, 162, 0.4));
    }

    .brand-container {
        opacity: 1;
        transform: none;
    }

    .navbar {
        opacity: 1;
        transform: none;
    }
}
