/* 
 * SPAZIO BEAUTY TATUAPÉ - Premium Light & Forest Green Design System
 * Concept: Conceito, Técnica e Personalidade
 * Brand Identity: Clean White & Deep Forest Green
 * Author: Antigravity AI
 */

/* ==========================================================================
   1. VARIABLES & DESIGN SYSTEM TOKENS
   ========================================================================== */
:root {
    /* Color Palette - Spazio Beauty Light Theme */
    --color-bg-primary: #FFFFFF;        /* Clean White background */
    --color-bg-secondary: #FAF8F5;      /* Soft Pearl Linen Off-White */
    
    --color-brand-green: #0A2C1D;       /* Brand primary forest green (from highlights) */
    --color-brand-green-hover: #061F14;
    --color-brand-green-light: #164C35;
    --color-brand-green-pale: #E5F6EE;  /* Soft green highlight background */
    
    --color-accent-sand: #D1C4B1;       /* Linen sand accent */
    --color-accent-gold: #C5A880;       /* Gold highlights */
    
    --color-text-dark: #111E16;         /* High readability charcoal-green */
    --color-text-muted: #5E6F65;        /* Sage muted green-gray */
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(10, 44, 29, 0.05);
    --shadow-premium: 0 20px 40px rgba(10, 44, 29, 0.08);
    --shadow-brand: 0 8px 25px rgba(10, 44, 29, 0.12);
    
    /* Glassmorphism (Light Theme) */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(10, 44, 29, 0.08);
    --glass-blur: blur(12px);
    
    /* Borders & Spacing */
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --border-radius-circle: 50%;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-primary);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Custom Selection */
::selection {
    background-color: var(--color-brand-green-pale);
    color: var(--color-brand-green);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent-sand);
    border-radius: 10px;
    border: 2px solid var(--color-bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-brand-green);
}

/* ==========================================================================
   3. TYPOGRAPHY & GENERAL UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--color-brand-green);
}

h1 { font-size: 3.8rem; }
h2 { font-size: 2.85rem; }
h3 { font-size: 2.1rem; }
h4 { font-size: 1.5rem; }

p {
    font-weight: 300;
    font-size: 0.95rem;
    color: #4A5850;
}

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

/* Utilities */
.text-brand { color: var(--color-brand-green); }
.text-brand-light { color: var(--color-accent-gold); }
.text-white { color: var(--color-white); }
.italic { font-style: italic; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.font-600 { font-weight: 600; }

/* Badges & Section Titles */
.section-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-brand-green);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}
.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background-color: var(--color-brand-green);
}

.section-title {
    font-size: 2.6rem;
    color: var(--color-brand-green);
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.text-center-heading {
    text-align: center;
    margin-bottom: 60px;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-brand {
    background: linear-gradient(135deg, var(--color-brand-green-light), var(--color-brand-green));
    color: var(--color-white);
    font-weight: 600;
    box-shadow: var(--shadow-brand);
}
.btn-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(10, 44, 29, 0.2);
}

.btn-outline {
    background: transparent;
    border-color: rgba(10, 44, 29, 0.25);
    color: var(--color-brand-green);
}
.btn-outline:hover {
    background-color: var(--color-brand-green);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-outline-brand {
    background: transparent;
    border-color: var(--color-brand-green);
    color: var(--color-brand-green);
}
.btn-outline-brand:hover {
    background: var(--color-brand-green);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.w-100 { width: 100%; }

/* ==========================================================================
   4. DECORATIVE FOUR-POINTED STARS & ANIMATIONS
   ========================================================================== */
.deco-star {
    position: absolute;
    color: var(--color-brand-green);
    opacity: 0.05;
    pointer-events: none;
    z-index: 2;
    transition: var(--transition-smooth);
}

/* Dual Axis Rotating Animations */
.star-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation: floatStarY 8s ease-in-out infinite, rotateStar 20s linear infinite;
}

.star-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 6%;
    animation: floatStarY 10s ease-in-out infinite, rotateStar 25s linear infinite;
}

.star-3 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: -5%;
    opacity: 0.03;
    animation: floatStarY 12s ease-in-out infinite, rotateStar 30s linear infinite;
}

.star-4 {
    width: 220px;
    height: 220px;
    bottom: 5%;
    left: -5%;
    opacity: 0.03;
    animation: floatStarY 9s ease-in-out infinite, rotateStar 28s linear infinite;
}

.star-5 {
    width: 150px;
    height: 150px;
    top: -5%;
    left: 45%;
    opacity: 0.02;
    animation: floatStarY 11s ease-in-out infinite, rotateStar 22s linear infinite;
}

@keyframes floatStarY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes rotateStar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   5. HEADER & NAV STYLING (GLASSMORPHISM)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.header.scrolled {
    background-color: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(10, 44, 29, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Design */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}
.logo-sub {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--color-text-muted);
}
.logo-main {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-brand-green);
}
.logo-tag {
    font-size: 0.45rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-accent-gold);
    margin-top: 2px;
}

/* Navigation Links */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 36px;
}
.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    position: relative;
    padding: 8px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-brand-green);
    transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
    color: var(--color-brand-green);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}
.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-brand-green);
    transition: var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-primary);
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}

/* Background Gradients */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 75% 25%, rgba(229, 246, 238, 0.45) 0%, transparent 60%);
    z-index: 1;
}

.hero-glow-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
    top: 8%;
    right: 5%;
    z-index: 2;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 246, 238, 0.12) 0%, transparent 75%);
    bottom: -15%;
    left: -10%;
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-brand-green-pale);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-brand-green);
    margin-bottom: 24px;
}

.badge-star {
    width: 12px;
    height: 12px;
    color: var(--color-brand-green);
}

.hero-title {
    font-size: 3.9rem;
    font-weight: 300;
    color: var(--color-brand-green);
    margin-bottom: 20px;
    line-height: 1.08;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: 36px;
    max-width: 520px;
    font-weight: 300;
}

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

/* Glass Showcase Card (Right Panel) */
.hero-card-showcase {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.showcase-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(10, 44, 29, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    animation: floatingCard 6.5s ease-in-out infinite;
}

@keyframes floatingCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.showcase-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(10, 44, 29, 0.02), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.card-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 70%);
    top: -40px;
    right: -40px;
}

.header-star {
    width: 24px;
    height: 24px;
    color: var(--color-brand-green);
    margin-bottom: 12px;
}

.card-insta-preview {
    border-bottom: 1px solid rgba(10, 44, 29, 0.08);
    padding-bottom: 20px;
    margin-bottom: 24px;
}
.insta-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-brand-green);
    margin-bottom: 8px;
}
.insta-tag i {
    color: var(--color-brand-green);
    font-size: 1.1rem;
}
.insta-stats {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}
.insta-stats strong {
    color: var(--color-text-dark);
}

.card-quote {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-brand-green);
    line-height: 1.4;
    margin-bottom: 28px;
    position: relative;
}

.card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    padding: 6px 12px;
    background: var(--color-brand-green-pale);
    border: 1px solid rgba(10, 44, 29, 0.05);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--color-brand-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.chip i {
    color: var(--color-brand-green);
}

/* Scroll down mouse indicator */
.hero-scrolldown {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}
.mouse-icon {
    width: 20px;
    height: 32px;
    border: 1px solid var(--color-text-muted);
    border-radius: 20px;
    position: relative;
}
.mouse-icon .wheel {
    width: 3px;
    height: 6px;
    background-color: var(--color-brand-green);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s ease-in-out infinite;
}

@keyframes scrollMouse {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* ==========================================================================
   7. SOBRE NÓS / CONCEPT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--color-bg-secondary);
    padding: 100px 0;
    color: var(--color-text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

/* Overlapping frame */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/5;
    z-index: 5;
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}
.image-border-brand {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-brand-green);
    top: 20px;
    left: -20px;
    z-index: 1;
    transition: var(--transition-smooth);
}
.about-image-wrapper:hover .about-img {
    transform: translate(-6px, 6px);
}
.about-image-wrapper:hover .image-border-brand {
    transform: translate(6px, -6px);
}

.experience-tag {
    position: absolute;
    bottom: 24px;
    right: -24px;
    background: var(--color-brand-green);
    color: var(--color-white);
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 3px solid var(--color-accent-gold);
}
.exp-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    line-height: 1;
}
.exp-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    white-space: nowrap;
}

/* Citations & Quotes layout */
.concept-blockquote {
    position: relative;
    border-left: 2px solid var(--color-brand-green);
    padding-left: 28px;
    margin: 28px 0;
}
.quote-icon-star {
    width: 24px;
    height: 24px;
    color: rgba(10, 44, 29, 0.12);
    position: absolute;
    top: -10px;
    left: 10px;
}
.concept-quote-text {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-style: italic;
    color: var(--color-brand-green);
    line-height: 1.35;
    font-weight: 300;
}
.concept-cite {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    color: var(--color-accent-gold);
    font-weight: 600;
}

.about-desc {
    font-size: 0.95rem;
    color: #43544B;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    border-top: 1px solid rgba(10, 44, 29, 0.08);
    padding-top: 24px;
}
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-brand-green-pale);
    color: var(--color-brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.feature-item h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-brand-green);
    margin-bottom: 4px;
}
.feature-item p {
    font-size: 0.85rem;
    color: #55665D;
}

/* ==========================================================================
   8. SERVICES SECTION WITH TABS
   ========================================================================== */
.services-section {
    background-color: var(--color-bg-primary);
    padding: 100px 0;
    position: relative;
}

.services-tabs-container {
    width: 100%;
    margin-top: 40px;
}

.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid rgba(10, 44, 29, 0.08);
    padding-bottom: 24px;
    margin-bottom: 48px;
}

.tab-btn {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(10, 44, 29, 0.08);
    color: var(--color-text-dark);
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.tab-btn i {
    color: var(--color-brand-green);
    font-size: 0.9rem;
}
.tab-btn:hover {
    border-color: var(--color-brand-green);
    transform: translateY(-2px);
}
.tab-btn.active {
    background: linear-gradient(135deg, var(--color-brand-green-light), var(--color-brand-green));
    color: var(--color-white);
    border-color: transparent;
    font-weight: 600;
    box-shadow: var(--shadow-brand);
}
.tab-btn.active i {
    color: var(--color-white);
}

/* Switch transitions */
.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.panel-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.panel-title {
    font-size: 2.3rem;
    color: var(--color-brand-green);
    margin-bottom: 12px;
}
.panel-desc {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 32px;
}

/* Service Pricing Menu Dotted Lists */
.service-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.service-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}
.service-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-brand-green);
}
.service-menu-item::after {
    content: '';
    flex-grow: 1;
    border-bottom: 1px dashed rgba(10, 44, 29, 0.15);
    order: 2;
}
.service-name { order: 1; }
.service-price {
    order: 3;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-brand-green);
    letter-spacing: 0.5px;
}
.service-details {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.panel-visual {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(10, 44, 29, 0.1);
}
.panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.panel-visual:hover .panel-img {
    transform: scale(1.06);
}

/* ==========================================================================
   9. LOOKBOOK / GALLERY GRID
   ========================================================================== */
.lookbook-section {
    background-color: var(--color-bg-secondary);
    padding: 100px 0;
}

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

.lookbook-item {
    cursor: pointer;
}

/* Polaroid Premium feed card frames */
.lookbook-card {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(10, 44, 29, 0.08);
}
.lookbook-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Insta Overlay hover effects */
.lookbook-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
}
.lookbook-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-brand-green);
    transform: translateY(-10px);
    transition: var(--transition-smooth);
}
.lookbook-insta-icon {
    font-size: 2.2rem;
    color: var(--color-brand-green);
    transform: scale(0.8);
    transition: var(--transition-smooth);
}
.lookbook-likes {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    transform: translateY(10px);
    transition: var(--transition-smooth);
}
.lookbook-likes i {
    color: var(--color-brand-green);
}

.lookbook-card:hover img {
    transform: scale(1.06);
}
.lookbook-card:hover .lookbook-hover {
    opacity: 1;
}
.lookbook-card:hover .lookbook-tag,
.lookbook-card:hover .lookbook-likes {
    transform: translateY(0);
}
.lookbook-card:hover .lookbook-insta-icon {
    transform: scale(1);
}

/* Lightbox Modal Stylings */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}
.lightbox.active {
    display: flex;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-brand-green);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}
.lightbox-close:hover {
    color: var(--color-accent-gold);
}
.lightbox-content-wrapper {
    max-width: 85%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 1px solid rgba(10, 44, 29, 0.2);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-premium);
}
.lightbox-caption {
    margin-top: 20px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-brand-green);
    text-align: center;
}

/* ==========================================================================
   10. INTERACTIVE BOOKING ASSISTANT QUIZ
   ========================================================================== */
.booking-section {
    background-color: var(--color-bg-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.booking-panel-text {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin: 20px 0 36px 0;
    font-weight: 300;
}
.booking-panel-text strong {
    color: var(--color-brand-green);
}

.booking-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.step-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.step-num {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-circle);
    background: var(--color-brand-green-pale);
    border: 1px solid rgba(10, 44, 29, 0.2);
    color: var(--color-brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}
.step-card h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-brand-green);
    margin-bottom: 2px;
}
.step-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Quiz Card Frame Styling */
.booking-quiz-panel {
    background: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-premium);
}

.quiz-star-icon {
    width: 24px;
    height: 24px;
    color: var(--color-brand-green);
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.quiz-header {
    border-bottom: 1px solid rgba(10, 44, 29, 0.08);
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.quiz-header h3 {
    font-size: 1.5rem;
    color: var(--color-brand-green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(10, 44, 29, 0.06);
    border-radius: 10px;
    overflow: hidden;
}
.quiz-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-brand-green-light), var(--color-brand-green));
    transition: var(--transition-smooth);
}

.quiz-step {
    display: none;
}
.quiz-step.active {
    display: block;
    animation: quizFadeIn 0.5s ease forwards;
}

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-step-title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

/* Grid hidden radios selection cards */
.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.quiz-option-card {
    cursor: pointer;
    position: relative;
}
.quiz-option-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.quiz-card-content {
    background: var(--color-bg-primary);
    border: 1px solid rgba(10, 44, 29, 0.08);
    border-radius: var(--border-radius-md);
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}
.option-icon {
    font-size: 1.6rem;
    color: var(--color-brand-green);
    transition: var(--transition-smooth);
}
.quiz-card-content span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.quiz-option-card:hover .quiz-card-content {
    border-color: var(--color-brand-green);
    background: var(--color-bg-secondary);
}

.quiz-option-card input:checked + .quiz-card-content {
    background: var(--color-brand-green-pale);
    border-color: var(--color-brand-green);
    box-shadow: 0 4px 15px rgba(10, 44, 29, 0.05);
}
.quiz-option-card input:checked + .quiz-card-content .option-icon {
    transform: scale(1.1);
    color: var(--color-brand-green);
}
.quiz-option-card input:checked + .quiz-card-content span {
    color: var(--color-brand-green);
    font-weight: 600;
}

/* Rows List options */
.quiz-options-row {
    display: flex;
    gap: 16px;
}
.quiz-option-row-card {
    flex: 1;
    cursor: pointer;
    position: relative;
}
.quiz-option-row-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.quiz-option-row-card span {
    display: block;
    background: var(--color-bg-primary);
    border: 1px solid rgba(10, 44, 29, 0.08);
    border-radius: 4px;
    padding: 12px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}
.quiz-option-row-card:hover span {
    border-color: var(--color-brand-green);
}
.quiz-option-row-card input:checked + span {
    background: var(--color-brand-green-pale);
    border-color: var(--color-brand-green);
    color: var(--color-brand-green);
    font-weight: 600;
}

/* Form layout controls */
.quiz-form-group {
    margin-bottom: 20px;
}
.quiz-form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}
.quiz-form-control {
    width: 100%;
    background: var(--color-bg-primary);
    border: 1px solid rgba(10, 44, 29, 0.08);
    border-radius: 4px;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-fast);
}
.quiz-form-control:focus {
    border-color: var(--color-brand-green);
}
textarea.quiz-form-control {
    resize: none;
}

.quiz-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
    border-top: 1px solid rgba(10, 44, 29, 0.06);
    padding-top: 24px;
}

/* WhatsApp mock preview */
.whatsapp-preview-box {
    background: #EAE5E9;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(10, 44, 29, 0.05);
    margin-bottom: 24px;
}
.whatsapp-preview-header {
    background-color: var(--color-brand-green);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.whatsapp-avatar {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-circle);
    background-color: var(--color-bg-primary);
    color: var(--color-brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.whatsapp-header-text h5 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
}
.whatsapp-header-text span {
    font-size: 0.65rem;
    color: var(--color-brand-green-pale);
}
.whatsapp-preview-body {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><path d="M0 0h80v80H0z" fill="none"/><path d="M40 0C17.9 0 0 17.9 0 40s17.9 40 40 40 40-17.9 40-40S62.1 0 40 0zm0 76C20.1 76 4 59.9 4 40S20.1 4 40 4s36 16.1 36 36-16.1 36-36 36z" fill="%230a2c1d" fill-opacity=".015"/></svg>');
    background-color: #efeae2;
    padding: 24px 20px;
    min-height: 160px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.whatsapp-bubble {
    background-color: #E1F7EC; /* Classic elegant light green bubble background */
    border-radius: 8px 0px 8px 8px;
    padding: 12px 16px;
    max-width: 85%;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}
.whatsapp-bubble p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #111E16;
    white-space: pre-line;
    line-height: 1.4;
}
.bubble-time {
    display: block;
    text-align: right;
    font-size: 0.6rem;
    color: rgba(17, 30, 22, 0.45);
    margin-top: 6px;
}

/* ==========================================================================
   11. LOCATION & MAPS SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg-secondary);
    padding: 100px 0;
    color: var(--color-text-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-desc {
    font-size: 1rem;
    color: #43544B;
    margin: 20px 0 36px 0;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-details-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-brand-green-pale);
    color: var(--color-brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.contact-details-list h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-brand-green);
    margin-bottom: 2px;
}
.contact-details-list p {
    font-size: 0.85rem;
    color: #55665D;
}

.contact-map-block {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(10, 44, 29, 0.08);
}
.map-wrapper {
    position: relative;
    width: 100%;
}
.contact-map-block iframe {
    display: block;
}

/* ==========================================================================
   12. FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--color-brand-green); /* solid dark anchoring footer */
    padding: 80px 0 20px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.footer-brand .logo .logo-main {
    color: var(--color-accent-gold);
}
.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-brand-green-pale);
    max-width: 320px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-circle);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.footer-socials a:hover {
    background: var(--color-accent-gold);
    color: var(--color-brand-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-brand);
}

.footer-links h3, .footer-services h3 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links ul, .footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a, .footer-services a {
    font-size: 0.85rem;
    color: var(--color-brand-green-pale);
    opacity: 0.75;
}
.footer-links a:hover, .footer-services a:hover {
    color: var(--color-accent-gold);
    opacity: 1;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    position: relative;
    z-index: 5;
}
.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-brand-green-pale);
    opacity: 0.6;
}

/* ==========================================================================
   13. FLOATING FLOATS & GENERAL ANIMATIONS
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-circle);
    background-color: #25D366;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-smooth);
}
.whatsapp-floating:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-circle);
    border: 1px solid #25D366;
    z-index: -1;
    animation: badgePulse 2s linear infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Intersection Scroll Reveal class lists */
.reveal-fade, .reveal-fade-in, .reveal-slide-left, .reveal-slide-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade {
    transform: translateY(20px);
}
.reveal-slide-left {
    transform: translateX(-30px);
}
.reveal-slide-right {
    transform: translateX(30px);
}
.reveal-fade-in {
    transform: scale(0.95);
}

.revealed {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Trava de Rolagem & Overlay do Menu Mobile */
body.no-scroll {
    overflow-y: hidden;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(11, 30, 22, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 990;
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   14. RESPONSIVE MEDIA QUERIES (TABLETS & PHONES)
   ========================================================================== */
@media (max-width: 1024px) {
    h1 { font-size: 2.85rem; }
    h2 { font-size: 2.25rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-card-showcase {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-visual {
        order: 2;
    }
    .about-text-content {
        order: 1;
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .panel-visual {
        order: 2;
    }
    .panel-text {
        order: 1;
    }
    
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-map-block {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-primary);
        border-left: 1px solid var(--glass-border);
        padding: 100px 40px;
        z-index: 1000;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 28px;
    }
    .nav-link {
        font-size: 1rem;
        display: block;
    }
    
    .d-none-mobile {
        display: none !important;
    }
    
    .services-tabs {
        gap: 8px;
    }
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.7rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .about-image-wrapper {
        aspect-ratio: 1/1;
    }
    .experience-tag {
        right: -8px;
        bottom: -8px;
        padding: 10px 16px;
    }
    .exp-number { font-size: 1.4rem; }
    
    .concept-quote-text {
        font-size: 1.3rem;
    }
    
    .services-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 12px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .tab-btn {
        flex-shrink: 0;
    }
    
    .service-menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .service-menu-item::after {
        display: none;
    }
    
    .lookbook-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-quiz-panel {
        padding: 24px 16px;
    }
    .quiz-options-grid {
        grid-template-columns: 1fr;
    }
    .quiz-options-row {
        flex-direction: column;
    }
    
    .whatsapp-bubble {
        max-width: 100%;
    }
    
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
