/* ==========================================================================
   SISTEMA DE DESIGN E VARIÁVEIS (BELA SOUL)
   ========================================================================== */
:root {
    /* Cores em HSL para controle refinado */
    --color-bg-raw: 300, 11%, 6%;
    --color-bg: hsl(var(--color-bg-raw));               /* Fundo Escuro de Luxo (#0F0C0E) */
    
    --color-primary-raw: 352, 31%, 65%;
    --color-primary: hsl(var(--color-primary-raw));       /* Rosa Antigo / Rose Gold (#C28B93) */
    --color-primary-dark: hsl(352, 31%, 52%);
    --color-primary-light: hsl(352, 45%, 78%);
    
    --color-accent-raw: 36, 56%, 72%;
    --color-accent: hsl(var(--color-accent-raw));         /* Dourado Soft / Champagne (#E2C08D) */
    --color-accent-dark: hsl(36, 50%, 60%);
    
    --color-text-raw: 343, 33%, 95%;
    --color-text: hsl(var(--color-text-raw));             /* Creme Suave para Leitura (#F7ECEF) */
    --color-text-muted: hsl(348, 14%, 69%);               /* Rosa Acinzentado (#BDA2A7) */
    
    /* Cores Auxiliares */
    --color-dark-card: rgba(24, 18, 21, 0.75);            /* Card Glassmorphism */
    --color-border: rgba(194, 139, 147, 0.15);            /* Borda Rosa Delicada */
    --color-border-hover: rgba(226, 192, 141, 0.35);      /* Borda Dourada Ativa */
    --color-success: #2ecc71;
    
    /* Fontes */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-signature: 'Alex Brush', cursive;
    
    /* Transições & Sombras */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-out;
    --shadow-subtle: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 20px rgba(194, 139, 147, 0.3);
    --shadow-gold-glow: 0 0 25px rgba(226, 192, 141, 0.45);
    
    /* Bordas redondas */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-circle: 50%;
}

/* ==========================================================================
   TEMA CLARO (LIGHT MODE)
   ========================================================================== */
[data-theme="light"] {
    --color-bg-raw: 343, 33%, 98%;
    --color-bg: hsl(var(--color-bg-raw));               /* Off-White Creme (#FCF9F9) */
    
    --color-text-raw: 343, 19%, 15%;
    --color-text: hsl(var(--color-text-raw));             /* Carvão Escuro (#2C1E22) */
    --color-text-muted: hsl(343, 15%, 45%);               /* Rosa/Marrom Queimado (#8A6B72) */
    
    --color-dark-card: rgba(255, 255, 255, 0.85);         /* Card Light Glassmorphism */
    --color-border: rgba(194, 139, 147, 0.4);             /* Borda Rosa mais visível no claro */
    --color-border-hover: rgba(226, 192, 141, 0.8);       /* Borda Dourada mais visível */
    
    --shadow-subtle: 0 8px 32px 0 rgba(194, 139, 147, 0.15);
    --shadow-glow: 0 0 20px rgba(194, 139, 147, 0.4);
    --shadow-gold-glow: 0 0 25px rgba(226, 192, 141, 0.6);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES BÁSICAS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0.03em;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

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

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* ==========================================================================
   CURSOR PERSONALIZADO
   ========================================================================== */
.custom-cursor, .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-primary);
    transition: transform 0.1s ease-out;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
}

@media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-dot {
        display: none;
    }
}

/* ==========================================================================
   TIPOGRAFIA & TÍTULOS COMUNS
   ========================================================================== */
.tag-brand {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    font-style: italic;
    color: var(--color-primary);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}

/* ==========================================================================
   BOTÕES PERSONALIZADOS (GLASS & SOLID)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-bg);
    box-shadow: var(--shadow-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-30deg);
    transition: 0.75s ease-in-out;
}

.btn-primary:hover::after {
    left: 125%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(194, 139, 147, 0.4);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(194, 139, 147, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   CARDS GLASSMORPHISM (TEMA DA MARCA)
   ========================================================================== */
.glass-card {
    background: var(--color-dark-card);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

/* ==========================================================================
   HEADER / NAVEGAÇÃO
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 24px 0;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(15, 12, 14, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-circle);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.logo-area:hover .nav-logo {
    transform: rotate(15deg) scale(1.08);
    border-color: var(--color-accent);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

.logo-text span {
    font-style: italic;
    font-weight: 400;
    color: var(--color-primary);
}

.nav-menu ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.nav-cta {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-fast);
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 12, 14, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 120px 32px 40px;
    border-left: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.mobile-nav a:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.mobile-nav .btn {
    margin-top: 24px;
}

@media (max-width: 991px) {
    .nav-menu, .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

/* ==========================================================================
   SEÇÃO HERO
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

/* Elementos de Decoração Imersivos */
.decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(2px);
    animation: sparkleBreathe 4s infinite ease-in-out;
}

.sparkle-1 { top: 20%; left: 10%; width: 6px; height: 6px; animation-delay: 0s; }
.sparkle-2 { top: 75%; left: 45%; width: 8px; height: 8px; animation-delay: 1.5s; }
.sparkle-3 { top: 35%; right: 15%; width: 5px; height: 5px; animation-delay: 3s; }

.circle-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.circle-glow-1 {
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background-color: var(--color-primary);
}

.circle-glow-2 {
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background-color: var(--color-accent);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 24px;
    border-left: 2px solid var(--color-accent);
    padding-left: 16px;
    font-weight: 400;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-metrics {
    display: flex;
    gap: 48px;
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
}

.metric-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Lado Visual do Hero (Mosaico Interativo) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

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

.mosaic-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-subtle);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}

.mosaic-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 12, 14, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid var(--color-border);
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

/* Efeito de Parallax Manual com Animações Alternadas */
.item-1 { transform: translateY(-20px); }
.item-2 { transform: translateY(10px); }
.item-3 { transform: translateY(-10px); }
.item-4 { transform: translateY(20px); }

.mosaic-item:hover {
    transform: scale(1.03) translateY(0);
    z-index: 5;
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.mosaic-item:hover img {
    transform: scale(1.08);
}

/* Card Floating Instagram */
.floating-insta-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 260px;
    padding: 16px;
    z-index: 10;
    animation: floatingEffect 5s infinite ease-in-out;
}

.insta-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.insta-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    border: 1px solid var(--color-primary);
}

.insta-name {
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge {
    color: #3897f0;
    font-size: 0.75rem;
}

.insta-handle {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    display: block;
}

.insta-comment {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--color-text);
}

/* Indicador de Rolar */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 10;
}

.scroll-indicator i {
    animation: bounceIndicator 2s infinite ease-in-out;
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
        padding-bottom: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        border-left: none;
        padding-left: 0;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-metrics {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 20px;
    }
    
    .floating-insta-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        animation: floatingEffectMobile 5s infinite ease-in-out;
    }
    
    .item-1, .item-2, .item-3, .item-4 {
        transform: translateY(0);
    }
}

/* ==========================================================================
   SEÇÃO MANIFESTO / QUEM SOMOS
   ========================================================================== */
.manifesto-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(24, 18, 21, 0.4) 50%, var(--color-bg) 100%);
    position: relative;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.manifesto-image {
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 520px;
}

.stack-img {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.stack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.main-img {
    width: 75%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 3;
}

.back-img {
    width: 70%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.decor-box {
    position: absolute;
    width: 60%;
    height: 60%;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-md);
    bottom: 40px;
    left: 40px;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.manifesto-image:hover .main-img {
    transform: scale(1.03) translate(-10px, -10px);
    border-color: var(--color-accent);
}

.manifesto-image:hover .back-img {
    transform: scale(1.03) translate(10px, 10px);
    border-color: var(--color-primary);
}

.manifesto-text-area {
    max-width: 520px;
}

.accent-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 24px;
    font-weight: 400;
}

.manifesto-body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.8;
}

.manifesto-signature {
    margin-top: 36px;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.signature-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.signature-name {
    font-family: var(--font-signature);
    font-size: 3rem;
    color: var(--color-primary);
    line-height: 1;
}

.signature-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-top: 4px;
}

@media (max-width: 991px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .manifesto-image {
        display: flex;
        justify-content: center;
    }
    
    .image-stack {
        height: 460px;
        max-width: 380px;
    }
    
    .manifesto-text-area {
        max-width: 100%;
        text-align: center;
    }
    
    .accent-text {
        font-size: 1.2rem;
    }
    
    .manifesto-signature {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   SEÇÃO VITRINE / SHOWROOM (PRODUTOS)
   ========================================================================== */
.showroom-section {
    padding: 100px 0;
    position: relative;
}

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

.showroom-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 30px;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--color-text);
    border-color: var(--color-primary);
    background-color: rgba(194, 139, 147, 0.05);
}

.filter-btn.active {
    color: var(--color-bg);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 600;
    box-shadow: var(--shadow-glow);
}

/* Grid de Produtos */
.showroom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
}

.product-image-area {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #171316;
}

.product-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image-area img {
    transform: scale(1.06);
}

/* Degradê sutil em cima das fotos para dar um acabamento luxuoso */
.product-image-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(15, 12, 14, 0.6), transparent);
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
    color: var(--color-bg);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.product-badge.new {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-bg);
}

/* Efeito de Detalhes no Hover da Imagem */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 14, 0.4);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    z-index: 2;
    backdrop-filter: blur(2px);
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.view-details-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-bg);
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-subtle);
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.product-card:hover .view-details-btn {
    transform: translateY(0);
}

/* Informações do Produto */
.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-description {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.product-cta-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(194, 139, 147, 0.08);
    padding-top: 16px;
}

.product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
}

.product-price span {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-action-btn {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.product-card:hover .card-action-btn {
    color: var(--color-accent);
    transform: translateX(3px);
}

/* Rodapé Showroom / Caixa VIP */
.showroom-footer {
    margin-top: 64px;
}

.vip-box {
    display: flex;
    align-items: center;
    padding: 32px 40px;
    gap: 32px;
    justify-content: space-between;
}

.vip-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(226, 192, 141, 0.1), rgba(194, 139, 147, 0.1));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

.vip-text {
    flex-grow: 1;
}

.vip-text h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.vip-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
    max-width: 600px;
}

.vip-box .btn {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .showroom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .vip-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .vip-icon-box {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .showroom-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SEÇÃO DIFERENCIAIS
   ========================================================================== */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(24, 18, 21, 0.3) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    padding: 48px 32px;
    text-align: center;
    height: 100%;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(194, 139, 147, 0.1), transparent);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0 auto 24px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    transform: rotateY(180deg) scale(1.08);
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.why-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-card {
        padding: 32px 24px;
    }
}

/* ==========================================================================
   SEÇÃO DEPOIMENTOS
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(24, 18, 21, 0.3) 0%, var(--color-bg) 100%);
}

.testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-slider {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.96);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 6px;
    color: var(--color-accent);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 32px;
    font-weight: 400;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.user-initials {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-bg);
    border-radius: var(--radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-glow);
}

.user-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.user-city {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-circle);
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: rgba(194, 139, 147, 0.05);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-circle);
    background-color: var(--color-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1.15rem;
    }
    .slider-controls {
        gap: 16px;
    }
}

/* ==========================================================================
   SEÇÃO LOCALIZAÇÃO & CONTATO
   ========================================================================== */
.location-section {
    padding: 100px 0;
    background: var(--color-bg);
}

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

.location-info-area {
    max-width: 500px;
}

.contact-details {
    margin: 36px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(194, 139, 147, 0.08);
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.5;
}

.contact-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.contact-link:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

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

/* Card do Mapa */
.map-card {
    padding: 20px;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
}

.map-pin-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    border: 1px solid var(--color-primary);
}

.map-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.map-header span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.status-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
}

.status-badge.open {
    background-color: rgba(46, 204, 113, 0.15);
    color: var(--color-success);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.map-iframe-container {
    flex-grow: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Deixa o mapa escuro integrado ao visual */
    transition: var(--transition-smooth);
}

.map-card:hover .map-iframe-container {
    filter: none; /* No hover, volta a cor real do mapa para melhor usabilidade */
    border-color: var(--color-accent);
}

@media (max-width: 991px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .location-info-area {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        text-align: left;
    }
    
    .location-actions {
        justify-content: center;
    }
    
    .map-card {
        height: 380px;
    }
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
    background: #090708;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 0;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-circle);
    border: 1px solid var(--color-border);
    margin-bottom: 16px;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.footer-brand-name span {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 400;
}

.footer-brand-tagline {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: rgba(194, 139, 147, 0.05);
    transform: scale(1.08);
}

.footer-links h3, .footer-newsletter h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-text);
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.newsletter-form input {
    flex-grow: 1;
    background: none;
    border: none;
    padding: 14px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(189, 162, 167, 0.4);
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 0 20px;
    flex-shrink: 0;
}

.newsletter-success-msg {
    display: none;
    font-size: 0.8rem;
    color: var(--color-success);
    margin-top: 8px;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(194, 139, 147, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

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

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .footer-brand, .footer-links, .footer-newsletter {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   MODAL DE DETALHES DO PRODUTO (IMERSIVO & CONVERSÃO)
   ========================================================================== */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 7, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-modal-overlay.active .product-modal {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    line-height: 1;
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

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

/* Área de Imagem do Modal com Zoom */
.modal-image-area {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: #171316;
    aspect-ratio: 3/4;
}

.modal-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.1s ease-out;
}

.image-zoom-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 12, 14, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid var(--color-border);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-muted);
    pointer-events: none;
    z-index: 2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Área de Informações do Modal */
.modal-info-area {
    display: flex;
    flex-direction: column;
}

.modal-badge {
    align-self: flex-start;
    background: rgba(194, 139, 147, 0.12);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 6px;
}

.modal-category {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 24px;
}

.modal-description-box {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    margin-bottom: 24px;
}

.modal-description-box h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.modal-description-box p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

.modal-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(194, 139, 147, 0.05);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.detail-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Seletor de Tamanhos */
.size-selector-area {
    margin-bottom: 32px;
}

.size-selector-area h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.size-options {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.size-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.size-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-text);
}

.size-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
    box-shadow: var(--shadow-glow);
}

.size-hint {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Checkout Ação */
.modal-action-area {
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    font-size: 0.95rem;
}

.checkout-assurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .product-modal {
        padding: 30px 20px;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   BOTÃO WHATSAPP FLUTUANTE (ESTILO DA MARCA)
   ========================================================================== */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    border: 1px solid rgba(226, 192, 141, 0.45);
    border-radius: var(--radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0F0C0E; /* Texto escuro contrastante e luxuoso */
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(194, 139, 147, 0.35), var(--shadow-glow);
    transition: var(--transition-smooth);
    animation: brandWhatsappPulse 3s infinite ease-in-out;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(226, 192, 141, 0.55), var(--shadow-gold-glow);
    color: #0F0C0E;
}

.floating-tooltip {
    position: absolute;
    right: 75px;
    background: var(--color-dark-card);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: var(--shadow-subtle);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
}

.whatsapp-floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ==========================================================================
   ANIMAÇÕES & EFEITOS
   ========================================================================== */
@keyframes brandWhatsappPulse {
    0% { box-shadow: 0 8px 32px rgba(194, 139, 147, 0.35), 0 0 0 0 rgba(194, 139, 147, 0.5); }
    70% { box-shadow: 0 8px 32px rgba(194, 139, 147, 0.35), 0 0 0 15px rgba(194, 139, 147, 0); }
    100% { box-shadow: 0 8px 32px rgba(194, 139, 147, 0.35), 0 0 0 0 rgba(194, 139, 147, 0); }
}

@keyframes sparkleBreathe {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes floatingEffect {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes floatingEffectMobile {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-10px) rotate(1deg); }
}

@keyframes bounceIndicator {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(6px); opacity: 1; }
}

.pulse-gold {
    animation: pulseGoldAnimation 3s infinite;
}

@keyframes pulseGoldAnimation {
    0% { box-shadow: 0 0 0 0 rgba(194, 139, 147, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(194, 139, 147, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 139, 147, 0); }
}

/* Animações de Scroll (Revelação) Otimizadas com GPU */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, opacity;
}

.fade-in-element.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Otimização de Performance (Hardware Acceleration) */
.product-card, .why-card, .testimonial-slide, .btn, .mosaic-item {
    will-change: transform;
}

/* ==========================================================================
   OTIMIZAÇÃO MOBILE EXTREMA & ERRO ZERO (≤ 480px)
   ========================================================================== */
@media (max-width: 480px) {
    /* Ajustes Gerais de Grid e Espaçamento */
    .container {
        padding: 0 16px;
    }
    
    /* Hero Adaptado */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.1rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 16px;
    }
    
    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    /* Botões 100% de Largura para Conversão Rápida no Mobile */
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 32px;
    }
    
    .hero-ctas .btn {
        width: 100% !important;
        padding: 15px 24px;
        font-size: 0.85rem;
    }
    
    .hero-metrics {
        gap: 24px;
        justify-content: space-between;
        padding-top: 20px;
    }
    
    .metric-number {
        font-size: 1.6rem;
    }
    
    /* Remove Card do Instagram Flutuante no Mobile Pequeno (Melhora Visibilidade e Evita Transbordamento) */
    .floating-insta-card {
        display: none !important;
    }
    
    .visual-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .mosaic-grid {
        gap: 12px;
    }
    
    /* Títulos de Seção Harmoniosos no Celular */
    .section-title {
        font-size: 1.9rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }
    
    /* Manifesto Mobile */
    .manifesto-section {
        padding: 60px 0;
    }
    
    .image-stack {
        height: 380px;
    }
    
    .accent-text {
        font-size: 1.1rem;
    }
    
    /* Vitrine Showroom */
    .showroom-section {
        padding: 60px 0;
    }
    
    .showroom-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.7rem;
    }
    
    /* Card de Produto Mobile */
    .product-info {
        padding: 16px;
    }
    
    .product-title {
        font-size: 1.15rem;
    }
    
    /* Depoimentos Mobile */
    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .testimonials-slider {
        min-height: 250px;
    }
    
    /* Localização & GPS */
    .location-section {
        padding: 60px 0;
    }
    
    .location-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .location-actions .btn {
        width: 100%;
    }
    
    .map-card {
        height: 320px;
        padding: 12px;
    }
    
    /* Botão Flutuante do WhatsApp menor e ajustado para Mobile (evita conflitar com o conteúdo da tela) */
    .whatsapp-floating-btn {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 1.6rem;
    }
    
    .floating-tooltip {
        display: none !important; /* Esconde tooltip no mobile para não atrapalhar o toque */
    }
    
    /* Modal de Detalhes do Look Mobile */
    .product-modal {
        padding: 24px 16px;
        max-height: 95vh;
    }
    
    .modal-close-btn {
        top: 10px;
        right: 12px;
        font-size: 1.8rem;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .size-btn {
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   ANIMAÇÕES PREMIUM E IMERSÃO (FASE 2)
   ========================================================================== */

/* Botão Theme Toggle */
.theme-toggle-btn {
    color: var(--color-text);
    font-size: 1.2rem;
    padding: 8px;
    border-radius: var(--radius-circle);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    z-index: 100;
}
.theme-toggle-btn:hover {
    color: var(--color-accent);
    transform: rotate(15deg) scale(1.1);
}

/* Stagger Animations (Efeito Cascata) */
.stagger-1, .stagger-2, .stagger-3, .stagger-4, .stagger-5 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.stagger-1.visible { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-2.visible { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-3.visible { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-4.visible { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-5.visible { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* Text Reveal Animation */
.reveal-text {
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transform: translateY(20px);
    transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), transform 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s;
}
.reveal-text.visible {
    opacity: 1;
    clip-path: polygon(0 -20%, 100% -20%, 100% 120%, 0 120%);
    transform: translateY(0);
}

/* Efeito Premium de Hover no Catálogo (Iris Reveal) */
.mosaic-item {
    position: relative;
    overflow: hidden;
}
.mosaic-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(226, 192, 141, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}
.mosaic-item:hover::after {
    width: 200%;
    height: 200%;
}
.mosaic-item img {
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 0;
}
.mosaic-item:hover img {
    transform: scale(1.08);
}
