/* Configuração do Design System Madame Luxo */
:root {
    --brand-main: #C8A96A;
    --brand-hover: #D4AF70;
    --brand-accent: #C8A96A;
    --brand-dark: #1A1A1A;
    --brand-gray: #8C8C8C;
    --brand-light: #FAFAF7;
    --whatsapp-color: #25D366;
    --bg-color: #FAFAF7;
    --text-color: #1A1A1A;
    --card-bg: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.08);
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --gold-gradient: linear-gradient(135deg, #8C6B2F 0%, #C8A96A 35%, #F0D98A 55%, #C8A96A 75%, #8C6B2F 100%);
    --gold-gradient-text: linear-gradient(135deg, #9A7535 0%, #D4AF70 30%, #F5E4A0 50%, #D4AF70 70%, #9A7535 100%);
    --gold-glow: 0 0 14px rgba(200, 169, 106, 0.35);
}

/* ========================================
   MADAME LUXO - COLOR SYSTEM
   ======================================== */

/* Light Mode (Padrão) - Fundo off-white premium, tipografia fashion */
body.light-mode {
    --brand-main: #C8A96A;
    --brand-hover: #D4AF70;
    --brand-accent: #C8A96A;
    --brand-dark: #1A1A1A;
    --brand-gray: #555555;
    --brand-light: #FAFAF7;
    --bg-color: #FAFAF7;
    --text-color: #1A1A1A;
    --card-bg: #FFFFFF;
    --border-color: rgba(26, 26, 26, 0.08);
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    -webkit-user-drag: none;
    pointer-events: none;
}

a,
button,
input,
textarea,
[data-interactive="true"] {
    user-select: auto;
    pointer-events: auto;
}

/* WhatsApp Floating Button com Balão */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Whatsapp message bubble */
#whatsapp-message {
    width: 260px;
    margin-left: 0px;
    position: absolute;
    bottom: 75px;
    right: 0px;
    padding: 10px 24px 10px 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    color: #1a1a1b;
    border-radius: 14px;
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1002;
}

/* Ponta do balão (cauda) */
#whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 25px;
    width: 12px;
    height: 12px;
    background: inherit;
    transform: rotate(45deg);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    z-index: -1;
}

#whatsapp-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Modo Claro - Ajustes de Cor */
body.light-mode #whatsapp-message {
    background: #ffffff !important;
    color: #1a1a1b !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .close-whatsapp-bubble {
    color: #000 !important;
}

body.dark-mode #whatsapp-message {
    background: #1A1A1A !important;
    color: #ffffff !important;
    border-color: rgba(200, 169, 106, 0.4) !important;
}

body.dark-mode .close-whatsapp-bubble {
    color: #fff !important;
}

/* Estilo da Logo com Borda Verde (Forçado) */
.whatsapp-logo-bubble {
    border: 2px solid #25d366 !important;
    background-color: #fff !important;
    padding: 2px !important;
}

.close-whatsapp-bubble {
    position: absolute;
    top: 4px;
    right: 6px;
    background: transparent;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 10px;
    padding: 3px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.close-whatsapp-bubble:hover {
    opacity: 1;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1001;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    margin-top: 1px;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Notificação Vermelha Sutil */
.whatsapp-notify {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff3b30;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1003;
}

.whatsapp-notify.show {
    opacity: 1;
    transform: scale(1);
}

/* Dark Mode - Fundo preto, destaques amarelo e branco */
body.dark-mode {
    --brand-main: #C8A96A;
    --brand-hover: #D4AF70;
    --brand-accent: #C8A96A;
    --brand-dark: #FFFFFF;
    --brand-gray: #8C8C8C;
    --brand-light: #1A1A1A;
    --bg-color: #1A1A1A;
    --text-color: #FFFFFF;
    --card-bg: #1A1A1A;
    --border-color: rgba(200, 169, 106, 0.15);
}

/* Light Mode */
/* REMOVIDO - Definição duplicada/incorreta. Usar a definição correta nas linhas 22-33 */

/* ========== LIGHT MODE OVERRIDES - MATRIX MADEIRAS ========== */

/* Light Mode - Fundo branco puro e design editorial */
body.light-mode {
    background-color: #FAFAF7 !important;
    --bg-color: #FAFAF7 !important;
    --brand-light: #FAFAF7 !important;
}

/* ========================================
   CORREÇÕES LIGHT MODE - CARDS E SEÇÕES
   ======================================== */

/* Cards de depoimentos no light mode */
body.light-mode .min-w-\[300px\].bg-\[\#18181b\] {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .min-w-\[300px\].bg-\[\#18181b\] p {
    color: #444444 !important;
}

body.light-mode .min-w-\[300px\].bg-\[\#18181b\] h4 {
    color: #1A1A1A !important;
}

body.light-mode .min-w-\[300px\].bg-\[\#18181b\] .text-brand-gray {
    color: #71717A !important;
}

body.light-mode .min-w-\[300px\].bg-\[\#18181b\] .border-white\/10 {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Seção Sobre no light mode */
body.light-mode .mt-16 .bg-\[\#18181b\] {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .mt-16 .bg-\[\#18181b\] p,
body.light-mode .mt-16 .bg-\[\#18181b\] .diferenciais-subtitulo {
    color: #52525B !important;
}

body.light-mode .mt-16 .bg-\[\#18181b\] strong {
    color: #C8A96A !important;
}

body.light-mode .mt-16 .bg-\[\#18181b\] .text-brand-dark,
body.light-mode .mt-16 .bg-\[\#18181b\] .text-zinc-300 {
    color: #1A1A1A !important;
}

/* Stats cards dentro da seção sobre no light mode */
body.light-mode .mt-16 .bg-black\/5,
body.light-mode .mt-16 .bg-black\/40 {
    background-color: #FAFAFA !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: none !important;
}

body.light-mode .mt-16 .bg-black\/5 div,
body.light-mode .mt-16 .bg-black\/40 div {
    color: #1A1A1A !important;
}

/* Cards Google, Site e Instagram no light mode - mesma cor do dark mode */
body.light-mode a.h-24.bg-white,
body.light-mode a.h-24[class*="hover:bg-zinc-50"] {
    background-color: #1A1A1A !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.light-mode a.h-24.bg-white span,
body.light-mode a.h-24[class*="hover:bg-zinc-50"] span {
    color: #FFFFFF !important;
}

body.light-mode a.h-24.bg-white .opacity-60,
body.light-mode a.h-24[class*="hover:bg-zinc-50"] .opacity-60 {
    opacity: 0.7 !important;
    color: #FFFFFF !important;
}

body.light-mode a.h-24.bg-white .fa-chevron-right,
body.light-mode a.h-24[class*="hover:bg-zinc-50"] .fa-chevron-right {
    color: var(--brand-main) !important;
}

body.light-mode a.h-24.bg-white .fa-google,
body.light-mode a.h-24.bg-white .fa-globe,
body.light-mode a.h-24.bg-white .fa-instagram {
    color: var(--brand-main) !important;
}

body.light-mode a.h-24.bg-white .bg-brand-main\/10,
body.light-mode a.h-24.bg-white .dark\:bg-white\/10 {
    background-color: rgba(200, 169, 106, 0.15) !important;
}

/* Botão Avaliar Loja no Google */
body.light-mode .-mt-8 a[href*="writereview"] {
    color: #1A1A1A !important;
    border-color: rgba(200, 169, 106, 0.5) !important;
}

body.light-mode .min-h-screen,
body.light-mode #root>div {
    background-color: #FAFAF7 !important;
}

/* Tipografia Editorial - Bebas Neue para todos os títulos */
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode .font-title {
    font-family: 'Bebas Neue', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    color: #1A1A1A;
}

body.light-mode h1 {
    font-family: 'Bebas Neue', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
}

/* Cards e Seções no light mode — exceção para botões amadeirados */
body.light-mode .bg-white,
body.light-mode .bg-zinc-900:not([class*="bg-[#1A1A1A]"]),
body.light-mode [class*="bg-[#18181b]"],
body.light-mode section .rounded-2xl:not([class*="bg-[#1A1A1A]"]):not(a):not(button),
body.light-mode section .rounded-3xl:not([class*="bg-[#1A1A1A]"]):not(a):not(button),
body.light-mode section [class*="rounded-[2"]:not([class*="bg-[#1A1A1A]"]):not(a):not(button) {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.02) !important;
}

body.light-mode .modal-content {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Textos no light mode - Contraste industrial */
body.light-mode p,
body.light-mode .text-zinc-600,
body.light-mode .text-zinc-500 {
    color: #444444 !important;
}

body.light-mode .text-brand-dark,
body.light-mode .text-zinc-900,
body.light-mode .text-black {
    color: #1A1A1A;
}

/* Exceção para textos sobre vídeos e fundos escuros */
body.light-mode .video-section h1,
body.light-mode .video-section h2,
body.light-mode .video-section h3,
body.light-mode .video-section h4,
body.light-mode #video-gallery h4,
body.light-mode #video-gallery p.text-white\/70,
body.light-mode .\!text-white {
    color: #FFFFFF !important;
}

/* Diferenciais e Cards de Atendimento */
body.light-mode .grid div[class*="bg-[#18181b]"],
body.light-mode .grid a[class*="bg-[#18181b]"],
body.light-mode .grid button[class*="bg-[#18181b]"] {
    background-color: #FAFAFA !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .grid div[class*="bg-[#27272a]"] {
    background-color: #F1F1F1 !important;
    color: #C8A96A !important;
}

/* Botões e elementos interativos no light mode */
body.light-mode .btn-primary,
body.light-mode .bg-brand-main {
    background-color: #C8A96A !important;
}

body.light-mode .theme-toggle {
    background-color: #FFFFFF !important;
    border-color: rgba(139, 94, 30, 0.2) !important;
    color: #C8A96A !important;
}

/* Sombras suaves em tom marrom */
body.light-mode .shadow-xl,
body.light-mode .shadow-2xl {
    box-shadow: 0 10px 40px -10px rgba(42, 29, 10, 0.1) !important;
}

body.light-mode .bg-zinc-800 {
    background-color: #f4f4f5 !important;
}

body.light-mode .bg-black {
    background-color: #f4f4f5 !important;
}

body.light-mode [class*="bg-[#121212]"] {
    background-color: #f4f4f5 !important;
}

body.light-mode [class*="bg-[#18181b]"] {
    background-color: #ffffff !important;
}

body.light-mode [class*="bg-[#09090b]"] {
    background-color: #f4f4f5 !important;
}

body.light-mode [class*="!bg-zinc-900"] {
    background-color: #ffffff !important;
}

/* Textos claros → escuros */
body.light-mode .text-white {
    color: #1a1a1a;
}

/* Títulos sobre imagens sempre brancos (cards de serviços) */
body.light-mode .absolute.text-white {
    color: #ffffff !important;
}

body.light-mode .text-zinc-300 {
    color: #3f3f46 !important;
}

body.light-mode .text-zinc-400 {
    color: #52525b !important;
}

body.light-mode .text-zinc-500 {
    color: #71717a !important;
}

body.light-mode [class*="text-white/7"] {
    color: rgba(24, 24, 27, 0.6) !important;
}

body.light-mode [class*="text-white/8"] {
    color: rgba(24, 24, 27, 0.75) !important;
}

body.light-mode [class*="text-white/5"] {
    color: rgba(24, 24, 27, 0.5) !important;
}

body.light-mode .text-brand-gray {
    color: #52525b !important;
}

body.light-mode .text-brand-dark {
    color: #18181b !important;
}

/* Bordas — Mais visíveis com contornos claros */
body.light-mode [class*="border-white/5"] {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-mode [class*="border-white/10"] {
    border-color: rgba(0, 0, 0, 0.12) !important;
}

body.light-mode [class*="border-brand-main"] {
    border-color: #C8A96A !important;
}

/* Fundos com opacidade branca → opacidade escura */
body.light-mode [class*="bg-white/5"] {
    background-color: rgba(0, 0, 0, 0.03) !important;
}

body.light-mode [class*="bg-white/10"] {
    background-color: rgba(0, 0, 0, 0.04) !important;
}

body.light-mode [class*="bg-black/5"] {
    background-color: rgba(0, 0, 0, 0.02) !important;
}

body.light-mode [class*="bg-black/50"] {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

body.light-mode [class*="bg-black/60"] {
    background-color: rgba(255, 255, 255, 0.7) !important;
}

/* Sombras mais suaves */
body.light-mode .shadow-xl {
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
}

body.light-mode .shadow-2xl {
    box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
}

body.light-mode .shadow-lg {
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03) !important;
}

body.light-mode [class*="shadow-brand-main"] {
    box-shadow: 0 4px 16px -4px rgba(200, 169, 106, 0.15) !important;
}

/* Glassmorphism */
body.light-mode .glass {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
}

/* Modais */
body.light-mode .modal-backdrop {
    background: rgba(240, 240, 240, 0.8) !important;
    backdrop-filter: blur(8px) !important;
}

body.light-mode .modal-content {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .close-modal {
    color: #71717a !important;
}

/* Theme Toggle - Estilos específicos */
.theme-toggle {
    position: fixed;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    transition: transform 0.4s var(--ease-premium), opacity 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium);
    backdrop-filter: blur(8px);
}

body.light-mode .theme-toggle {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    color: #1A1A1A;
}

body.light-mode .theme-toggle i {
    color: #C8A96A !important;
}

body.dark-mode .theme-toggle {
    background: #1A1A1A !important;
    border: 1px solid rgba(196, 154, 60, 0.3) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    color: #FFFFFF !important;
}

body.dark-mode .theme-toggle i {
    color: #C8A96A !important;
}

/* Hover effects para theme toggle */
body.light-mode .theme-toggle:hover {
    border-color: #C8A96A !important;
    transform: scale(1.05) rotate(12deg);
}

body.dark-mode .theme-toggle:hover {
    border-color: #C8A96A !important;
    transform: scale(1.05) rotate(12deg);
}

/* ========================================
   BOTÕES PRINCIPAIS - LIGHT MODE
   Tom amadeirado médio (mais claro que o dark, mesmo visual)
   ======================================== */

/* Botões de link secundários com bg-[#1A1A1A] — tom amadeirado #1A1A1A */
body.light-mode a[class*="bg-[#1A1A1A]"],
body.light-mode button[class*="bg-[#1A1A1A]"],
body.light-mode a.bg-white[class*="dark:bg-[#1A1A1A]"],
body.light-mode button.bg-white[class*="dark:bg-[#1A1A1A]"] {
    background-color: #1A1A1A;
    border-color: rgba(196, 154, 60, 0.2) !important;
    box-shadow: 0 8px 24px rgba(60, 41, 14, 0.25) !important;
}

/* Hover: escurece levemente */
body.light-mode a[class*="bg-[#1A1A1A]"]:hover,
body.light-mode button[class*="bg-[#1A1A1A]"]:hover,
body.light-mode a.bg-white[class*="dark:bg-[#1A1A1A]"]:hover,
body.light-mode button.bg-white[class*="dark:bg-[#1A1A1A]"]:hover {
    background-color: #333333 !important;
    box-shadow: 0 12px 30px rgba(60, 41, 14, 0.35) !important;
}

/* Textos e ícones brancos dentro dos botões principais amadeirados */
body.light-mode a[class*="bg-[#1A1A1A]"] span,
body.light-mode a[class*="bg-[#1A1A1A]"] i,
body.light-mode button[class*="bg-[#1A1A1A]"] span,
body.light-mode button[class*="bg-[#1A1A1A]"] i,
body.light-mode a.bg-white[class*="dark:bg-[#1A1A1A]"] span,
body.light-mode a.bg-white[class*="dark:bg-[#1A1A1A]"] i,
body.light-mode button.bg-white[class*="dark:bg-[#1A1A1A]"] span,
body.light-mode button.bg-white[class*="dark:bg-[#1A1A1A]"] i {
    color: #ffffff !important;
}

/* Ícone decorativo de fundo (background) — opacidade levemente maior */
body.light-mode a[class*="bg-[#1A1A1A]"] .opacity-10,
body.light-mode button[class*="bg-[#1A1A1A]"] .opacity-10,
body.light-mode a.bg-white[class*="dark:bg-[#1A1A1A]"] .opacity-10,
body.light-mode button.bg-white[class*="dark:bg-[#1A1A1A]"] .opacity-10 {
    opacity: 0.15 !important;
}

/* Botões h-24 com bg-zinc-900 (fallback) */
body.light-mode .h-24.bg-zinc-900 {
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.light-mode .h-24.bg-zinc-900 span,
body.light-mode .h-24.bg-zinc-900 i {
    color: #ffffff !important;
}

body.light-mode .h-24[class*="hover:bg-zinc-800"]:hover {
    background-color: #333333 !important;
}

/* Service cards, about sections */
body.light-mode section .rounded-2xl,
body.light-mode section .rounded-3xl,
body.light-mode section [class*="rounded-[2"] {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Botões Ligar Loja e Salvar Contato — mesma cor do dark mode */
body.light-mode .grid-cols-2 a.bg-white,
body.light-mode .grid-cols-2 button.bg-white {
    background-color: #1A1A1A !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .grid-cols-2 a.bg-white:hover,
body.light-mode .grid-cols-2 button.bg-white:hover {
    border-color: rgba(200, 169, 106, 0.4) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

/* Garantir textos e ícones corretos nesses botões */
body.light-mode .grid-cols-2 a.bg-white span,
body.light-mode .grid-cols-2 button.bg-white span {
    color: #FFFFFF !important;
}

body.light-mode .grid-cols-2 a.bg-white i,
body.light-mode .grid-cols-2 button.bg-white i {
    color: var(--brand-main) !important;
}


/* Footer */
body.light-mode footer {
    background-color: #ffffff !important;
    border-top: 2px solid var(--brand-main) !important;
    color: #3f3f46 !important;
}

body.light-mode footer a,
body.light-mode footer i,
body.light-mode footer p,
body.light-mode footer span {
    color: #3f3f46 !important;
}

body.light-mode footer a:hover,
body.light-mode footer a:hover i {
    color: var(--brand-main) !important;
}

/* Créditos e copyright — remover transparência no light mode */
body.light-mode footer .opacity-30 {
    opacity: 0.7 !important;
    color: #3f3f46 !important;
}

body.light-mode footer a.opacity-30 {
    opacity: 0.6 !important;
    color: #52525b !important;
}

body.light-mode footer a.opacity-30:hover {
    opacity: 1 !important;
    color: var(--brand-main) !important;
}

/* Gradientes de hero */
body.light-mode [class*="from-brand-main"] {
    --tw-gradient-from: rgba(200, 169, 106, 0.06) !important;
}

/* Micro-labels e opacidades */
body.light-mode .micro-label {
    color: #52525b !important;
}

body.light-mode .opacity-70 span,
body.light-mode .font-medium.opacity-70 {
    opacity: 1 !important;
    color: #3f3f46 !important;
}

/* Video labels e overlays */
body.light-mode .video-label {
    color: #ffffff !important;
}

body.light-mode .btn-ativar-som {
    color: #ffffff !important;
}

/* Botão CTA vinho — manter texto branco */
body.light-mode .bg-brand-main {
    color: #ffffff !important;
}

body.light-mode [class*="bg-brand-main"] a,
body.light-mode [class*="bg-brand-main"] span,
body.light-mode [class*="bg-brand-main"] i,
body.light-mode a.bg-brand-main,
body.light-mode a.bg-brand-main i {
    color: #ffffff !important;
}

/* Botão WhatsApp gradiente — manter texto branco */
body.light-mode [class*="from-[#C8A96A]"] {
    color: #ffffff !important;
}

body.light-mode [class*="from-[#C8A96A]"] span,
body.light-mode [class*="from-[#C8A96A]"] i,
body.light-mode [class*="from-[#C8A96A]"] div {
    color: #ffffff !important;
}

body.light-mode .pulse-custom-slow span,
body.light-mode .pulse-custom-slow i {
    color: #ffffff !important;
}

/* Seção de vídeo — fundo transparente no light mode */
body.light-mode .video-gallery-section {
    background-color: transparent !important;
}

body.light-mode #video-gallery {
    background-color: transparent !important;
}

body.light-mode .video-carousel,
body.light-mode #videoCarousel {
    background-color: transparent !important;
}

/* Stats cards — fundo branco com borda vinho */
body.light-mode [class*="bg-black/40"] {
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    border: 2px solid var(--brand-main) !important;
    box-shadow: 0 2px 12px rgba(200, 169, 106, 0.08) !important;
}

/* Pill de categoria do hero — light mode: sem borda, fundo suave */
body.light-mode [data-config="negocio.subtitulo"] {
    background-color: rgba(255, 255, 255, 0.25) !important;
    border: none !important;
    box-shadow: none !important;
}

/* Pill de categoria do hero — dark mode: letra branca */
body.dark-mode [data-config="negocio.subtitulo"] {
    color: #ffffff !important;
}

/* ========================================
   Hero - textos fashion premium (LIGHT MODE)
   ======================================== */

/* Overlay na hero no light mode - degradê branco concentrado na base */
body.light-mode .hero .absolute.inset-0.z-0::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 45%, rgba(250, 250, 247, 0.75) 80%, rgba(250, 250, 247, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Overlay escuro na hero no dark mode - apenas na base onde tem texto */
body.dark-mode .hero .absolute.inset-0.z-0::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(26, 26, 26, 0.75) 80%, rgba(26, 26, 26, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Brilho normal da imagem de fundo no dark mode */
body.dark-mode .hero .absolute.inset-0.z-0 > div {
    filter: brightness(0.75);
}

/* "Desde 2007" — texto escuro para contrastar com degradê branco */
body.light-mode .hero [class*="font-label"][class*="text-white"] {
    color: #1A1A1A !important;
    text-shadow: none;
    opacity: 1 !important;
    letter-spacing: 0.05em !important;
}

/* "Madame Luxo" — gradiente dourado no hero */
body.light-mode .hero [data-config="negocio.nome"] {
    background: linear-gradient(135deg, #9A7535 0%, #D4AF70 30%, #F5E4A0 50%, #D4AF70 70%, #9A7535 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none;
    filter: none;
}

/* Descrição da hero no light mode */
body.light-mode .hero [data-config="negocio.descricao"] {
    color: #1A1A1A !important;
    text-shadow: none;
}

/* Pill de categoria do hero no light mode */
body.light-mode .hero [data-config="negocio.subtitulo"] {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #1A1A1A !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}


body.light-mode [class*="bg-black/40"] div {
    color: #18181b !important;
}

body.light-mode [class*="bg-black/40"] .text-brand-main {
    color: var(--brand-main) !important;
}

/* Mapa — sem inversão */
body.light-mode iframe {
    filter: none !important;
}

/* Base */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'DM Sans', sans-serif;
    transition: background-color 0.8s var(--ease-premium), color 0.8s var(--ease-premium);
    overflow-x: hidden;
}

/* Container principal - herda cor de fundo */
#root>div {
    background-color: var(--bg-color);
    transition: background-color 0.8s var(--ease-premium);
}

/* ========================================
   HERO VIDEO - Cole��o Madame Luxo
   ======================================== */
.hero {
    overflow: hidden;
}

.hero>div:first-of-type {
    overflow: hidden;
    position: absolute;
    inset: 0;
}

.hero video,
.hero-video {
    position: absolute;
    top: 25%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -25%) scale(1.5);
    object-fit: cover;
    z-index: 0;
}

/* Ajuste para vídeo 9:16 - descer a imagem para mostrar estrutura */
.hero video,
.hero-video {
    top: 70% !important;
    transform: translate(-50%, -70%) scale(1.6) !important;
}

/* Zoom extra para cobrir bordas em telas diferentes */
@media (min-aspect-ratio: 16/9) {

    .hero video,
    .hero-video {
        width: 160% !important;
        height: 160% !important;
        top: 65% !important;
        transform: translate(-50%, -65%) scale(1.7) !important;
    }
}

@media (max-aspect-ratio: 9/16) {

    .hero video,
    .hero-video {
        width: 180% !important;
        height: 180% !important;
        top: 75% !important;
        transform: translate(-50%, -75%) scale(1.5) !important;
    }
}

/* Garantir que o body em light mode tenha fundo claro */
body.light-mode {
    background-color: #FAFAF8 !important;
}

body.light-mode #root>div {
    background-color: #FAFAF8 !important;
}

/* Garantir que o body em dark mode tenha fundo marrom escuro */
body.dark-mode {
    background-color: #1A1A1A;
}

body.dark-mode #root>div {
    background-color: #1A1A1A;
}

/* Efeito de Textura Premium para o Dark Mode */
body.dark-mode::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/* ========================================
   TIPOGRAFIA MADAME LUXO - PADRÃO EMPRESA
   ======================================== */

/* Títulos de impacto: Bebas Neue */
h1,
h2,
h3,
h4,
.font-serif,
.font-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.95;
    text-transform: uppercase;
}

h1 {
    font-weight: 400;
}

/* Corpo e navegação: DM Sans */
body,
.font-sans {
    font-family: 'DM Sans', sans-serif;
}

/* Taglines e destaques femininos: Playfair Display Italic */
.font-label,
.micro-label {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.08em;
    display: inline-block;
}

/* Glassmorphism Refinado */
.glass {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
}

/* Modal Styling */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Light mode - overlay claro para TODOS os modais */
body.light-mode .modal-backdrop {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(5px) !important;
}

/* Modal da Galeria - garantir visibilidade */
body.light-mode #modal-gallery.modal-backdrop {
    background: rgba(250, 250, 250, 0.85) !important;
    backdrop-filter: blur(6px) !important;
}

body.dark-mode #modal-gallery.modal-backdrop {
    background: rgba(0, 0, 0, 0.95) !important;
}

/* Dark mode - overlay escuro para TODOS os modais */
body.dark-mode .modal-backdrop {
    background: rgba(0, 0, 0, 0.85) !important;
}

body.light-mode #modal-gallery .modal-content {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

body.dark-mode #modal-gallery .modal-content {
    background: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9) !important;
}

/* Cards de imagem no modal - light mode */
body.light-mode #modal-gallery .aspect-\[4\/5\] {
    background-color: #f4f4f5 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* ========================================
   CORREÇÕES ADICIONAIS LIGHT MODE
   ======================================== */

/* Cards de produtos no light mode - garantir fundo claro */
body.light-mode .grid .group.relative.flex.flex-col.bg-\[\#18181b\] {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .grid .group.relative.flex.flex-col.bg-\[\#18181b\] .p-4 a {
    color: #C8A96A !important;
}

body.light-mode .grid .group.relative.flex.flex-col.bg-\[\#18181b\] .p-4 a i {
    color: #25D366 !important;
}

/* Logo de fechamento do grid no light mode */
body.light-mode .grid .group.flex.flex-col.items-center.justify-center.bg-black\/5 {
    background-color: #FAFAFA !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* Link "Outras Categorias" no light mode */
body.light-mode .group.inline-flex.items-center.gap-3.py-4.px-8.rounded-full.bg-\[\#1A1A1A\] {
    background-color: #1A1A1A !important;
}

body.light-mode .group.inline-flex.items-center.gap-3.py-4.px-8.rounded-full.bg-\[\#1A1A1A\] span {
    color: #FFFFFF !important;
}

/* Footer no light mode */
body.light-mode footer.bg-zinc-900 {
    background-color: #FFFFFF !important;
}

body.light-mode footer.bg-zinc-900 p,
body.light-mode footer.bg-zinc-900 span,
body.light-mode footer.bg-zinc-900 a {
    color: #52525B !important;
}

body.light-mode footer.bg-zinc-900 a:hover {
    color: #C8A96A !important;
}

/* Diferenciais cards no light mode */
body.light-mode .diferencial-card-premium {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .diferencial-card-premium span {
    color: #1A1A1A !important;
}

/* Galeria de fotos no light mode */
body.light-mode .mt-16 .aspect-\[4\/5\] {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Carousel 3D no light mode - ajustar borda */
body.light-mode .carousel-3d-item {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 20px 60px rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .carousel-3d-item.active {
    border-color: #C8A96A !important;
}

body.light-mode #modal-gallery .aspect-\[4\/5\] p {
    color: #18181b !important;
}

body.light-mode #modal-gallery .aspect-\[4\/5\] .bg-gradient-to-t {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, transparent 100%) !important;
}

/* Cards de imagem no modal - dark mode */
body.dark-mode #modal-gallery .aspect-\[4\/5\] {
    background-color: #141414 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode #modal-gallery .aspect-\[4\/5\] p {
    color: #ffffff !important;
}

body.dark-mode #modal-gallery .aspect-\[4\/5\] .bg-gradient-to-t {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%) !important;
}

/* ========================================
   GALERIA PREVIEW PREMIUM - LIGHT MODE
   ======================================== */

/* Container da galeria preview */
body.light-mode .reveal.px-5 .bg-\[\#18181b\] {
    background-color: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Fotos da galeria preview */
body.light-mode .reveal.px-5 .aspect-\[3\/4\],
body.light-mode .reveal.px-5 .aspect-\[4\/3\] {
    border-color: rgba(0, 0, 0, 0.12) !important;
}

body.light-mode .reveal.px-5 .bg-gradient-to-t {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, transparent 100%) !important;
}

/* Botão "Ver Todas as Fotos" */
body.light-mode .reveal.px-5 button {
    box-shadow: 0 4px 16px rgba(200, 169, 106, 0.15) !important;
}

/* ========================================
   MODAL GALERIA - HEADER LIGHT MODE
   ======================================== */

body.light-mode #modal-gallery .modal-content {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-mode #modal-gallery .sticky.top-0 {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-mode #modal-gallery .sticky.top-0 h3 {
    color: #18181b !important;
}

body.light-mode #modal-gallery .sticky.top-0 p {
    color: #71717a !important;
}

body.light-mode #modal-gallery .sticky.top-0 button {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

body.light-mode #modal-gallery .sticky.top-0 button:hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-mode #modal-gallery .sticky.top-0 button i {
    color: #18181b !important;
}

body.light-mode #modal-gallery .w-9.h-9 {
    background-color: rgba(200, 169, 106, 0.1) !important;
}

body.light-mode #modal-gallery .grid.grid-cols-2 {
    background-color: transparent !important;
}

/* ========================================
   MODAL IMAGEM INDIVIDUAL - LIGHT MODE
   ======================================== */

/* Overlay do modal de imagem - light mode: mais claro */
body.light-mode #modal-image.modal-backdrop {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px) !important;
}

/* Botão de fechar no light mode - escuro */
body.light-mode #modal-image .close-modal {
    color: #18181b !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body.light-mode #modal-image .close-modal:hover {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

/* Imagem no modal - garantir visibilidade */
body.light-mode #modal-image #popup-img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

#modal-gallery .modal-content {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column !important;
    max-height: 90vh !important;
    width: 95% !important;
    margin: auto !important;
}

#modal-gallery .modal-content * {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

#modal-image .modal-content {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    max-width: 95vw !important;
    max-height: 95vh !important;
    margin: auto !important;
}

#modal-image .modal-content * {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.modal-content {
    background: var(--card-bg) !important;
    border-radius: 2rem;
    width: 95%;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 0;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    z-index: 10001;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--brand-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s var(--ease-premium);
}

.close-modal:hover {
    transform: rotate(90deg);
}

/* Animations & Micro-interactions */
.hover-lift {
    transition: all 0.5s var(--ease-premium);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(200, 169, 106, 0.4);
}

/* Estilos para cards de diferenciais premium */
.diferencial-card-premium {
    transition: all 0.4s var(--ease-premium) !important;
}

.diferencial-card-premium:hover {
    transform: translateY(-5px) !important;
    border-color: var(--brand-main) !important;
    background: var(--brand-light) !important;
}

.diferencial-card-premium i {
    transition: transform 0.5s var(--ease-premium);
    display: inline-block;
}

.diferencial-card-premium:hover i {
    transform: scale(1.2) rotate(10deg);
}

.diferencial-card-premium:active {
    transform: scale(0.95) !important;
}

.diferencial-card-premium:active i {
    animation: iconPop 0.4s var(--ease-premium) forwards;
}

@keyframes iconPop {
    0% {
        transform: scale(1.2) rotate(10deg);
    }

    50% {
        transform: scale(1.5) rotate(-15deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

/* Fade Up Entry */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-premium);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse slower and more elegant - REMOVIDO para conformidade OAB */
@keyframes pulse-ring {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(200, 169, 106, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(200, 169, 106, 0);
    }

    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(200, 169, 106, 0);
    }
}

/* .pulse-custom-slow - Animation removida para conformidade OAB */

/* Theme Toggle - definição unificada abaixo em BOTÕES FIXOS SUPERIORES */

/* Refinamento dos Cards em Modo Escuro (Global) - Madame Luxo */
body.dark-mode [class*="bg-[#18181b]"],
body.dark-mode [class*="bg-zinc-900"],
body.dark-mode .modal-content {
    background-color: var(--card-bg) !important;
    border: 1px solid rgba(196, 154, 60, 0.15) !important;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(196, 154, 60, 0.05) !important;
}

body.dark-mode [class*="bg-[#18181b]"]:hover {
    border-color: rgba(200, 169, 106, 0.4) !important;
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(200, 169, 106, 0.15) !important;
}

/* Textos em modo escuro - Branco puro para contraste */
body.dark-mode .text-brand-dark {
    color: #FFFFFF !important;
}

body.dark-mode .text-zinc-900 {
    color: #FFFFFF !important;
}

body.dark-mode .text-zinc-300 {
    color: #D4B08A !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
    color: #FFFFFF !important;
}

/* Parágrafos no modo escuro */
body.dark-mode p {
    color: #F4F0EB !important;
}

/* Labels e textos secundários no modo escuro */
body.dark-mode .text-brand-gray {
    color: #C8A96A !important;
}

/* Cards específicos no modo escuro */
body.dark-mode .bg-white {
    background-color: var(--card-bg) !important;
}

body.dark-mode .bg-zinc-900 {
    background-color: var(--card-bg) !important;
}

/* Music Toggle Animations */
@keyframes pulse-music {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 169, 106, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(200, 169, 106, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 169, 106, 0);
    }
}

#music-toggle.playing {
    animation: pulse-music 2.5s infinite var(--ease-premium);
    border-color: var(--brand-hover);
}

#music-toggle.playing i {
    color: var(--brand-hover);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--brand-light);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-main);
    opacity: 0.3;
    border-radius: 10px;
}

/* Make sure text colors override everything properly */
.text-brand-gray {
    color: var(--brand-gray) !important;
}

.text-brand-dark {
    color: var(--brand-dark) !important;
}

/* Horizontal Scroll for Reviews */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Container do carrossel */
.hide-scrollbar.overflow-x-hidden {
    overflow-x: hidden;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    display: flex;
    width: max-content;
    animation: scrollReviews 60s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollResults {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll-fast {
    display: flex;
    width: max-content;
    animation: scrollResults 20s linear infinite;
}

.animate-scroll-fast:hover {
    animation-play-state: paused;
}

@keyframes scrollReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.animate-scroll-reverse {
    display: flex;
    width: max-content;
    animation: scrollReverse 60s linear infinite;
}

.animate-scroll-reverse:hover {
    animation-play-state: paused;
}

@keyframes modalZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-modalZoom {
    animation: modalZoom 0.4s var(--ease-premium);
}

/* ============================================================
   GALERIA DE VÍDEOS - Carousel 3D
   ============================================================ */

/* Botão ativar som */
.btn-ativar-som {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--brand-main);
    color: #fff;
    border: none;
    border-radius: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    animation: pulseSom 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(200, 169, 106, 0.5);
    transition: background 0.2s, transform 0.2s;
}

.btn-ativar-som:hover {
    background: var(--brand-hover);
    transform: translateX(-50%) scale(1.05);
}

@keyframes pulseSom {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(200, 169, 106, 0.5);
    }

    50% {
        box-shadow: 0 4px 30px rgba(200, 169, 106, 0.8);
    }
}

.video-gallery-section {
    background-color: rgba(24, 24, 27, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border-radius: 2.5rem;
    margin-top: 2rem;
}

.video-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .video-carousel {
        height: 420px;
    }
}

/* Cada slide de vídeo */
.video-slide {
    position: absolute;
    width: 75%;
    max-width: 320px;
    height: 90%;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    background: #000;
}

/* Máscara de degradê para os vídeos de fundo */
.video-slide-mask {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Vídeo player */
.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Label do vídeo */
.video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1.5rem 1.25rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ── Estados do Carousel ────────────────────────────── */

/* Vídeo ativo (centro, na frente) */
.video-slide.is-active {
    z-index: 30;
    transform: translateX(0) scale(1);
    filter: none;
    border-color: var(--brand-main);
    box-shadow:
        0 0 40px rgba(107, 23, 40, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-slide.is-active .video-slide-mask {
    opacity: 0;
}

.video-slide.is-active .video-label {
    opacity: 1;
    transform: translateY(0);
}

/* Vídeo à esquerda */
.video-slide.is-prev {
    z-index: 20;
    transform: translateX(-40%) scale(0.78) rotateY(6deg);
    filter: blur(4px) brightness(0.45);
}

.video-slide.is-prev .video-slide-mask {
    opacity: 1;
    background: linear-gradient(to left, rgba(9, 9, 11, 0.92) 0%, rgba(9, 9, 11, 0.5) 40%, transparent 100%);
}

/* Vídeo à direita */
.video-slide.is-next {
    z-index: 20;
    transform: translateX(40%) scale(0.78) rotateY(-6deg);
    filter: blur(4px) brightness(0.45);
}

.video-slide.is-next .video-slide-mask {
    opacity: 1;
    background: linear-gradient(to right, rgba(9, 9, 11, 0.92) 0%, rgba(9, 9, 11, 0.5) 40%, transparent 100%);
}

/* Vídeos ocultos (fora da visualização) */
.video-slide.is-hidden {
    z-index: 10;
    transform: translateX(0) scale(0.6);
    filter: blur(8px) brightness(0.3);
    opacity: 0;
    pointer-events: none;
}

/* ── Indicadores / Dots ────────────────────────────── */
.video-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-bottom: 2rem;
}

.video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--brand-gray);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.video-dot.active {
    border-color: var(--brand-main);
    background: var(--brand-main);
    transform: scale(1.2);
}

/* Barra de progresso no vídeo ativo */
.video-slide.is-active.is-playing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--brand-main);
    z-index: 20;
    width: 0%;
    animation: videoProgress var(--video-duration, 10s) linear forwards;
}

@keyframes videoProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Utilities */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ============================================================
   ANIMATED TICKER (Top Bar)
   ============================================================ */
.welcome-ticker {
    width: 100%;
    background: transparent;
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 50;
    border-top: 1px solid var(--brand-main);
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    gap: 1.5rem;
    animation: ticker-anim 30s linear infinite;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-items: center;
    will-change: transform;
}

.ticker-content span {
    display: inline-block;
}

.ticker-content .separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

@keyframes ticker-anim {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.welcome-ticker {
    overflow: hidden;
}

.welcome-ticker .ticker-content {
    width: max-content;
}

body.light-mode .welcome-ticker {
    background: transparent;
    color: var(--brand-main);
    border-top: 1px solid var(--brand-main);
    border-bottom: 1px solid var(--brand-main);
    box-shadow: none;
}

/* ===== IMAGE COMPARISON SLIDER ===== */
.image-comparison-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    overflow: hidden;
    --exposure: 50%;
}

.comparison-img-before,
.comparison-img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-img-after {
    z-index: 10;
}

.comparison-img-before {
    z-index: 20;
    clip-path: inset(0 calc(100% - var(--exposure)) 0 0);
}

.comparison-slider-handle {
    position: absolute;
    top: 0;
    left: var(--exposure);
    width: 4px;
    height: 100%;
    background: var(--brand-main);
    z-index: 40;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-slider-handle::after {
    content: '\f337';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--brand-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.comparison-slider {
    position: absolute;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
    outline: none;
    margin: 0;
    z-index: 50;
    cursor: ew-resize;
}

.comparison-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 40px;
    height: 480px;
    background: transparent;
    cursor: ew-resize;
}

.results-badge-abs {
    position: absolute;
    top: 1.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 30;
}

.badge-before-pos {
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(4px);
}

.badge-after-pos {
    right: 1rem;
    background: var(--brand-main);
    color: #fff;
    box-shadow: 0 4px 12px rgba(107, 23, 40, 0.3);
}

.text-brand-main {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override para separadores vinhos no modo claro */
body.light-mode .ticker-content .separator {
    color: var(--brand-main) !important;
    opacity: 1 !important;
}

/* Ticker Animation for Welcome Bar */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.welcome-ticker .separator {
    margin: 0 1.5rem;
    opacity: 0.3;
}

/* ============================================
   BOTÕES FIXOS SUPERIORES (PADRÃO PREMIUM)
   ============================================ */

.theme-toggle.hidden-btn {
    transform: translateX(calc(100% + 1.5rem));
    opacity: 0;
    pointer-events: none;
}

.theme-toggle:hover {
    transform: scale(1.05) rotate(12deg);
    border-color: var(--brand-main);
}

/* 
   AJUSTE DE BORDA DO FOOTER (SOLICITAÇÃO)
   Garante que o footer tenha uma borda dourada/bege premium em ambos os modos
*/
body.dark-mode footer.bg-zinc-900,
body.light-mode footer.bg-zinc-900 {
    border-top: 2.5px solid var(--brand-hover) !important;
}

/* ============================================
   SEÇÃO NOSSOS DIFERENCIAIS — REDESIGN PREMIUM
   ============================================ */

/* ── Cabeçalho da seção ── */
.diferenciais-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-main);
    opacity: 0.85;
    margin-bottom: 8px;
}

.diferenciais-titulo {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 14px;
}

/* Linha decorativa dourada */
.diferenciais-linha {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-main) 0%, var(--brand-hover) 100%);
    border-radius: 2px;
    margin-bottom: 12px;
}

.diferenciais-subtitulo {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--brand-gray);
    max-width: 300px;
}

/* ── Estilos de Diferenciais Simplificados (Herança de index.html) ── */

/* ── Fim dos Estilos de Diferenciais ── */

/* ============================================
   🎥 CARROSSEL DE VÍDEOS 3D (NOSSA ESTRUTURA)
   ============================================ */

.carousel-3d-container {
    perspective: 1200px;
    width: 100%;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.carousel-3d-item {
    position: absolute;
    width: 280px;
    aspect-ratio: 9/16;
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    background: #000;
    box-shadow: 0 10px 30px rgba(60, 41, 14, 0.1), 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estado: Central (Ativo) */
.carousel-3d-item.active {
    z-index: 30;
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 30px 90px rgba(60, 41, 14, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Estado: Esquerda (Pausado/Atrás) */
.carousel-3d-item.left {
    z-index: 20;
    transform: translate3d(-130px, 0, -150px) rotateY(25deg) scale(0.85);
    opacity: 0.6;
    filter: blur(2px) grayscale(0.5);
}

/* Estado: Direita (Pausado/Atrás) */
.carousel-3d-item.right {
    z-index: 20;
    transform: translate3d(130px, 0, -150px) rotateY(-25deg) scale(0.85);
    opacity: 0.6;
    filter: blur(2px) grayscale(0.5);
}

/* Estado: Escondido (Para carrosséis com > 3 itens) */
.carousel-3d-item.hidden {
    z-index: 10;
    transform: translate3d(0, 0, -250px) scale(0.7);
    opacity: 0;
    pointer-events: none;
}

/* Sombreamento degradê nos vídeos laterais */
.carousel-3d-item:not(.active)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(60, 41, 14, 0.8), transparent);
    z-index: 5;
    transition: opacity 0.3s;
}

.carousel-3d-item.active::after {
    opacity: 0;
}

/* Controles de Navegação do Carrossel */
.carousel-controls {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-main);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(200, 169, 106, 0.3);
}

.carousel-btn:active {
    scale: 0.9;
}

/* Ajuste Responsivo Mobile */
@media (max-width: 480px) {
    .carousel-3d-item {
        width: 220px;
    }

    .carousel-3d-item.left {
        transform: translate3d(-80px, 0, -120px) rotateY(20deg) scale(0.8);
    }

    .carousel-3d-item.right {
        transform: translate3d(80px, 0, -120px) rotateY(-20deg) scale(0.8);
    }
}

}/* Configuração do Design System Madame Luxo */
:root {
    --brand-main: #C8A96A;
    --brand-hover: #C8A96A;
    --brand-accent: #C8A96A;
    --brand-dark: #1A1A1A;
    --brand-gray: #8C8C8C;
    --brand-light: #FAFAF7;
    --whatsapp-color: #25D366;
    --bg-color: #FAFAF7;
    --text-color: #1A1A1A;
    --card-bg: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.08);
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   MADAME LUXO - COLOR SYSTEM
   ======================================== */

/* Light Mode (Padrão) - Fundo off-white premium, tipografia fashion */
body.light-mode {
    --brand-main: #C8A96A;
    --brand-hover: #C8A96A;
    --brand-accent: #C8A96A;
    --brand-dark: #1A1A1A;
    --brand-gray: #555555;
    --brand-light: #FAFAF7;
    --bg-color: #FAFAF7;
    --text-color: #1A1A1A;
    --card-bg: #FFFFFF;
    --border-color: rgba(26, 26, 26, 0.08);
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    -webkit-user-drag: none;
    pointer-events: none;
}

a,
button,
input,
textarea,
[data-interactive="true"] {
    user-select: auto;
    pointer-events: auto;
}

/* WhatsApp Floating Button com Balão */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Whatsapp message bubble */
#whatsapp-message {
    width: 260px;
    margin-left: 0px;
    position: absolute;
    bottom: 75px;
    right: 0px;
    padding: 10px 24px 10px 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    color: #1a1a1b;
    border-radius: 14px;
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1002;
}

/* Ponta do balão (cauda) */
#whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 25px;
    width: 12px;
    height: 12px;
    background: inherit;
    transform: rotate(45deg);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    z-index: -1;
}

#whatsapp-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Modo Claro - Ajustes de Cor */
body.light-mode #whatsapp-message {
    background: #ffffff !important;
    color: #1a1a1b !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .close-whatsapp-bubble {
    color: #000 !important;
}

body.dark-mode #whatsapp-message {
    background: #1A1A1A !important;
    color: #ffffff !important;
    border-color: rgba(200, 169, 106, 0.4) !important;
}

body.dark-mode .close-whatsapp-bubble {
    color: #fff !important;
}

/* Estilo da Logo com Borda Verde (Forçado) */
.whatsapp-logo-bubble {
    border: 2px solid #25d366 !important;
    background-color: #fff !important;
    padding: 2px !important;
}

.close-whatsapp-bubble {
    position: absolute;
    top: 4px;
    right: 6px;
    background: transparent;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 10px;
    padding: 3px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.close-whatsapp-bubble:hover {
    opacity: 1;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1001;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    margin-top: 1px;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Notificação Vermelha Sutil */
.whatsapp-notify {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff3b30;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1003;
}

.whatsapp-notify.show {
    opacity: 1;
    transform: scale(1);
}

/* Dark Mode - Fundo preto, destaques amarelo e branco */
body.dark-mode {
    --brand-main: #C8A96A;
    --brand-hover: #C8A96A;
    --brand-accent: #C8A96A;
    --brand-dark: #FFFFFF;
    --brand-gray: #8C8C8C;
    --brand-light: #1A1A1A;
    --bg-color: #1A1A1A;
    --text-color: #FFFFFF;
    --card-bg: #1A1A1A;
    --border-color: rgba(200, 169, 106, 0.15);
}

/* Light Mode */
/* REMOVIDO - Definição duplicada/incorreta. Usar a definição correta nas linhas 22-33 */

/* ========== LIGHT MODE OVERRIDES - MATRIX MADEIRAS ========== */

/* Light Mode - Fundo branco puro e design editorial */
body.light-mode {
    background-color: #FAFAF7 !important;
    --bg-color: #FAFAF7 !important;
    --brand-light: #FAFAF7 !important;
}

/* ========================================
   CORREÇÕES LIGHT MODE - CARDS E SEÇÕES
   ======================================== */

/* Cards de depoimentos no light mode */
body.light-mode .min-w-\[300px\].bg-\[\#18181b\] {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .min-w-\[300px\].bg-\[\#18181b\] p {
    color: #444444 !important;
}

body.light-mode .min-w-\[300px\].bg-\[\#18181b\] h4 {
    color: #1A1A1A !important;
}

body.light-mode .min-w-\[300px\].bg-\[\#18181b\] .text-brand-gray {
    color: #71717A !important;
}

body.light-mode .min-w-\[300px\].bg-\[\#18181b\] .border-white\/10 {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Seção Sobre no light mode */
body.light-mode .mt-16 .bg-\[\#18181b\] {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .mt-16 .bg-\[\#18181b\] p,
body.light-mode .mt-16 .bg-\[\#18181b\] .diferenciais-subtitulo {
    color: #52525B !important;
}

body.light-mode .mt-16 .bg-\[\#18181b\] strong {
    color: #C8A96A !important;
}

body.light-mode .mt-16 .bg-\[\#18181b\] .text-brand-dark,
body.light-mode .mt-16 .bg-\[\#18181b\] .text-zinc-300 {
    color: #1A1A1A !important;
}

/* Stats cards dentro da seção sobre no light mode */
body.light-mode .mt-16 .bg-black\/5,
body.light-mode .mt-16 .bg-black\/40 {
    background-color: #FAFAFA !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: none !important;
}

body.light-mode .mt-16 .bg-black\/5 div,
body.light-mode .mt-16 .bg-black\/40 div {
    color: #1A1A1A !important;
}

/* Cards Google, Site e Instagram no light mode - mesma cor do dark mode */
body.light-mode a.h-24.bg-white,
body.light-mode a.h-24[class*="hover:bg-zinc-50"] {
    background-color: #1A1A1A !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.light-mode a.h-24.bg-white span,
body.light-mode a.h-24[class*="hover:bg-zinc-50"] span {
    color: #FFFFFF !important;
}

body.light-mode a.h-24.bg-white .opacity-60,
body.light-mode a.h-24[class*="hover:bg-zinc-50"] .opacity-60 {
    opacity: 0.7 !important;
    color: #FFFFFF !important;
}

body.light-mode a.h-24.bg-white .fa-chevron-right,
body.light-mode a.h-24[class*="hover:bg-zinc-50"] .fa-chevron-right {
    color: var(--brand-main) !important;
}

body.light-mode a.h-24.bg-white .fa-google,
body.light-mode a.h-24.bg-white .fa-globe,
body.light-mode a.h-24.bg-white .fa-instagram {
    color: var(--brand-main) !important;
}

body.light-mode a.h-24.bg-white .bg-brand-main\/10,
body.light-mode a.h-24.bg-white .dark\:bg-white\/10 {
    background-color: rgba(200, 169, 106, 0.15) !important;
}

/* Botão Avaliar Loja no Google */
body.light-mode .-mt-8 a[href*="writereview"] {
    color: #1A1A1A !important;
    border-color: rgba(200, 169, 106, 0.5) !important;
}

body.light-mode .min-h-screen,
body.light-mode #root>div {
    background-color: #FAFAF7 !important;
}

/* Tipografia Editorial - Bebas Neue para todos os títulos */
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode .font-title {
    font-family: 'Bebas Neue', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    color: #1A1A1A;
}

body.light-mode h1 {
    font-family: 'Bebas Neue', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
}

/* Cards e Seções no light mode — exceção para botões amadeirados */
body.light-mode .bg-white,
body.light-mode .bg-zinc-900:not([class*="bg-[#1A1A1A]"]),
body.light-mode [class*="bg-[#18181b]"],
body.light-mode section .rounded-2xl:not([class*="bg-[#1A1A1A]"]):not(a):not(button),
body.light-mode section .rounded-3xl:not([class*="bg-[#1A1A1A]"]):not(a):not(button),
body.light-mode section [class*="rounded-[2"]:not([class*="bg-[#1A1A1A]"]):not(a):not(button) {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.02) !important;
}

body.light-mode .modal-content {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Textos no light mode - Contraste industrial */
body.light-mode p,
body.light-mode .text-zinc-600,
body.light-mode .text-zinc-500 {
    color: #444444 !important;
}

body.light-mode .text-brand-dark,
body.light-mode .text-zinc-900,
body.light-mode .text-black {
    color: #1A1A1A;
}

/* Exceção para textos sobre vídeos e fundos escuros */
body.light-mode .video-section h1,
body.light-mode .video-section h2,
body.light-mode .video-section h3,
body.light-mode .video-section h4,
body.light-mode #video-gallery h4,
body.light-mode #video-gallery p.text-white\/70,
body.light-mode .\!text-white {
    color: #FFFFFF !important;
}

/* Diferenciais e Cards de Atendimento */
body.light-mode .grid div[class*="bg-[#18181b]"],
body.light-mode .grid a[class*="bg-[#18181b]"],
body.light-mode .grid button[class*="bg-[#18181b]"] {
    background-color: #FAFAFA !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .grid div[class*="bg-[#27272a]"] {
    background-color: #F1F1F1 !important;
    color: #C8A96A !important;
}

/* Botões e elementos interativos no light mode */
body.light-mode .btn-primary,
body.light-mode .bg-brand-main {
    background-color: #C8A96A !important;
}

body.light-mode .theme-toggle {
    background-color: #FFFFFF !important;
    border-color: rgba(139, 94, 30, 0.2) !important;
    color: #C8A96A !important;
}

/* Sombras suaves em tom marrom */
body.light-mode .shadow-xl,
body.light-mode .shadow-2xl {
    box-shadow: 0 10px 40px -10px rgba(42, 29, 10, 0.1) !important;
}

body.light-mode .bg-zinc-800 {
    background-color: #f4f4f5 !important;
}

body.light-mode .bg-black {
    background-color: #f4f4f5 !important;
}

body.light-mode [class*="bg-[#121212]"] {
    background-color: #f4f4f5 !important;
}

body.light-mode [class*="bg-[#18181b]"] {
    background-color: #ffffff !important;
}

body.light-mode [class*="bg-[#09090b]"] {
    background-color: #f4f4f5 !important;
}

body.light-mode [class*="!bg-zinc-900"] {
    background-color: #ffffff !important;
}

/* Textos claros → escuros */
body.light-mode .text-white {
    color: #1a1a1a;
}

/* Títulos sobre imagens sempre brancos (cards de serviços) */
body.light-mode .absolute.text-white {
    color: #ffffff !important;
}

body.light-mode .text-zinc-300 {
    color: #3f3f46 !important;
}

body.light-mode .text-zinc-400 {
    color: #52525b !important;
}

body.light-mode .text-zinc-500 {
    color: #71717a !important;
}

body.light-mode [class*="text-white/7"] {
    color: rgba(24, 24, 27, 0.6) !important;
}

body.light-mode [class*="text-white/8"] {
    color: rgba(24, 24, 27, 0.75) !important;
}

body.light-mode [class*="text-white/5"] {
    color: rgba(24, 24, 27, 0.5) !important;
}

body.light-mode .text-brand-gray {
    color: #52525b !important;
}

body.light-mode .text-brand-dark {
    color: #18181b !important;
}

/* Bordas — Mais visíveis com contornos claros */
body.light-mode [class*="border-white/5"] {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-mode [class*="border-white/10"] {
    border-color: rgba(0, 0, 0, 0.12) !important;
}

body.light-mode [class*="border-brand-main"] {
    border-color: #C8A96A !important;
}

/* Fundos com opacidade branca → opacidade escura */
body.light-mode [class*="bg-white/5"] {
    background-color: rgba(0, 0, 0, 0.03) !important;
}

body.light-mode [class*="bg-white/10"] {
    background-color: rgba(0, 0, 0, 0.04) !important;
}

body.light-mode [class*="bg-black/5"] {
    background-color: rgba(0, 0, 0, 0.02) !important;
}

body.light-mode [class*="bg-black/50"] {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

body.light-mode [class*="bg-black/60"] {
    background-color: rgba(255, 255, 255, 0.7) !important;
}

/* Sombras mais suaves */
body.light-mode .shadow-xl {
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
}

body.light-mode .shadow-2xl {
    box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
}

body.light-mode .shadow-lg {
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03) !important;
}

body.light-mode [class*="shadow-brand-main"] {
    box-shadow: 0 4px 16px -4px rgba(200, 169, 106, 0.15) !important;
}

/* Glassmorphism */
body.light-mode .glass {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
}

/* Modais */
body.light-mode .modal-backdrop {
    background: rgba(240, 240, 240, 0.8) !important;
    backdrop-filter: blur(8px) !important;
}

body.light-mode .modal-content {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .close-modal {
    color: #71717a !important;
}

/* Theme Toggle - Estilos específicos */
.theme-toggle {
    position: fixed;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    transition: transform 0.4s var(--ease-premium), opacity 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium);
    backdrop-filter: blur(8px);
}

body.light-mode .theme-toggle {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    color: #1A1A1A;
}

body.light-mode .theme-toggle i {
    color: #C8A96A !important;
}

body.dark-mode .theme-toggle {
    background: #1A1A1A !important;
    border: 1px solid rgba(196, 154, 60, 0.3) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    color: #FFFFFF !important;
}

body.dark-mode .theme-toggle i {
    color: #C8A96A !important;
}

/* Hover effects para theme toggle */
body.light-mode .theme-toggle:hover {
    border-color: #C8A96A !important;
    transform: scale(1.05) rotate(12deg);
}

body.dark-mode .theme-toggle:hover {
    border-color: #C8A96A !important;
    transform: scale(1.05) rotate(12deg);
}

/* ========================================
   BOTÕES PRINCIPAIS - LIGHT MODE
   Tom amadeirado médio (mais claro que o dark, mesmo visual)
   ======================================== */

/* Botões de link secundários com bg-[#1A1A1A] — tom amadeirado #1A1A1A */
body.light-mode a[class*="bg-[#1A1A1A]"],
body.light-mode button[class*="bg-[#1A1A1A]"],
body.light-mode a.bg-white[class*="dark:bg-[#1A1A1A]"],
body.light-mode button.bg-white[class*="dark:bg-[#1A1A1A]"] {
    background-color: #1A1A1A;
    border-color: rgba(196, 154, 60, 0.2) !important;
    box-shadow: 0 8px 24px rgba(60, 41, 14, 0.25) !important;
}

/* Hover: escurece levemente */
body.light-mode a[class*="bg-[#1A1A1A]"]:hover,
body.light-mode button[class*="bg-[#1A1A1A]"]:hover,
body.light-mode a.bg-white[class*="dark:bg-[#1A1A1A]"]:hover,
body.light-mode button.bg-white[class*="dark:bg-[#1A1A1A]"]:hover {
    background-color: #333333 !important;
    box-shadow: 0 12px 30px rgba(60, 41, 14, 0.35) !important;
}

/* Textos e ícones brancos dentro dos botões principais amadeirados */
body.light-mode a[class*="bg-[#1A1A1A]"] span,
body.light-mode a[class*="bg-[#1A1A1A]"] i,
body.light-mode button[class*="bg-[#1A1A1A]"] span,
body.light-mode button[class*="bg-[#1A1A1A]"] i,
body.light-mode a.bg-white[class*="dark:bg-[#1A1A1A]"] span,
body.light-mode a.bg-white[class*="dark:bg-[#1A1A1A]"] i,
body.light-mode button.bg-white[class*="dark:bg-[#1A1A1A]"] span,
body.light-mode button.bg-white[class*="dark:bg-[#1A1A1A]"] i {
    color: #ffffff !important;
}

/* Ícone decorativo de fundo (background) — opacidade levemente maior */
body.light-mode a[class*="bg-[#1A1A1A]"] .opacity-10,
body.light-mode button[class*="bg-[#1A1A1A]"] .opacity-10,
body.light-mode a.bg-white[class*="dark:bg-[#1A1A1A]"] .opacity-10,
body.light-mode button.bg-white[class*="dark:bg-[#1A1A1A]"] .opacity-10 {
    opacity: 0.15 !important;
}

/* Botões h-24 com bg-zinc-900 (fallback) */
body.light-mode .h-24.bg-zinc-900 {
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.light-mode .h-24.bg-zinc-900 span,
body.light-mode .h-24.bg-zinc-900 i {
    color: #ffffff !important;
}

body.light-mode .h-24[class*="hover:bg-zinc-800"]:hover {
    background-color: #333333 !important;
}

/* Service cards, about sections */
body.light-mode section .rounded-2xl,
body.light-mode section .rounded-3xl,
body.light-mode section [class*="rounded-[2"] {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Botões Ligar Loja e Salvar Contato — mesma cor do dark mode */
body.light-mode .grid-cols-2 a.bg-white,
body.light-mode .grid-cols-2 button.bg-white {
    background-color: #1A1A1A !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .grid-cols-2 a.bg-white:hover,
body.light-mode .grid-cols-2 button.bg-white:hover {
    border-color: rgba(200, 169, 106, 0.4) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

/* Garantir textos e ícones corretos nesses botões */
body.light-mode .grid-cols-2 a.bg-white span,
body.light-mode .grid-cols-2 button.bg-white span {
    color: #FFFFFF !important;
}

body.light-mode .grid-cols-2 a.bg-white i,
body.light-mode .grid-cols-2 button.bg-white i {
    color: var(--brand-main) !important;
}


/* Footer */
body.light-mode footer {
    background-color: #ffffff !important;
    border-top: 2px solid var(--brand-main) !important;
    color: #3f3f46 !important;
}

body.light-mode footer a,
body.light-mode footer i,
body.light-mode footer p,
body.light-mode footer span {
    color: #3f3f46 !important;
}

body.light-mode footer a:hover,
body.light-mode footer a:hover i {
    color: var(--brand-main) !important;
}

/* Créditos e copyright — remover transparência no light mode */
body.light-mode footer .opacity-30 {
    opacity: 0.7 !important;
    color: #3f3f46 !important;
}

body.light-mode footer a.opacity-30 {
    opacity: 0.6 !important;
    color: #52525b !important;
}

body.light-mode footer a.opacity-30:hover {
    opacity: 1 !important;
    color: var(--brand-main) !important;
}

/* Gradientes de hero */
body.light-mode [class*="from-brand-main"] {
    --tw-gradient-from: rgba(200, 169, 106, 0.06) !important;
}

/* Micro-labels e opacidades */
body.light-mode .micro-label {
    color: #52525b !important;
}

body.light-mode .opacity-70 span,
body.light-mode .font-medium.opacity-70 {
    opacity: 1 !important;
    color: #3f3f46 !important;
}

/* Video labels e overlays */
body.light-mode .video-label {
    color: #ffffff !important;
}

body.light-mode .btn-ativar-som {
    color: #ffffff !important;
}

/* Botão CTA vinho — manter texto branco */
body.light-mode .bg-brand-main {
    color: #ffffff !important;
}

body.light-mode [class*="bg-brand-main"] a,
body.light-mode [class*="bg-brand-main"] span,
body.light-mode [class*="bg-brand-main"] i,
body.light-mode a.bg-brand-main,
body.light-mode a.bg-brand-main i {
    color: #ffffff !important;
}

/* Botão WhatsApp gradiente — manter texto branco */
body.light-mode [class*="from-[#C8A96A]"] {
    color: #ffffff !important;
}

body.light-mode [class*="from-[#C8A96A]"] span,
body.light-mode [class*="from-[#C8A96A]"] i,
body.light-mode [class*="from-[#C8A96A]"] div {
    color: #ffffff !important;
}

body.light-mode .pulse-custom-slow span,
body.light-mode .pulse-custom-slow i {
    color: #ffffff !important;
}

/* Seção de vídeo — fundo transparente no light mode */
body.light-mode .video-gallery-section {
    background-color: transparent !important;
}

body.light-mode #video-gallery {
    background-color: transparent !important;
}

body.light-mode .video-carousel,
body.light-mode #videoCarousel {
    background-color: transparent !important;
}

/* Stats cards — fundo branco com borda vinho */
body.light-mode [class*="bg-black/40"] {
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    border: 2px solid var(--brand-main) !important;
    box-shadow: 0 2px 12px rgba(200, 169, 106, 0.08) !important;
}

/* Pill de categoria do hero — light mode: sem borda, fundo suave */
body.light-mode [data-config="negocio.subtitulo"] {
    background-color: rgba(255, 255, 255, 0.25) !important;
    border: none !important;
    box-shadow: none !important;
}

/* Pill de categoria do hero — dark mode: letra branca */
body.dark-mode [data-config="negocio.subtitulo"] {
    color: #ffffff !important;
}

/* ========================================
   Hero - textos fashion premium (LIGHT MODE)
   ======================================== */

/* Overlay na hero no light mode - degradê branco concentrado na base */
body.light-mode .hero .absolute.inset-0.z-0::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 45%, rgba(250, 250, 247, 0.75) 80%, rgba(250, 250, 247, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Overlay escuro na hero no dark mode - apenas na base onde tem texto */
body.dark-mode .hero .absolute.inset-0.z-0::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(26, 26, 26, 0.75) 80%, rgba(26, 26, 26, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Brilho normal da imagem de fundo no dark mode */
body.dark-mode .hero .absolute.inset-0.z-0 > div {
    filter: brightness(0.75);
}

/* "Desde 2007" — texto escuro para contrastar com degradê branco */
body.light-mode .hero [class*="font-label"][class*="text-white"] {
    color: #1A1A1A !important;
    text-shadow: none;
    opacity: 1 !important;
    letter-spacing: 0.05em !important;
}

/* "Madame Luxo" — gradiente dourado no hero */
body.light-mode .hero [data-config="negocio.nome"] {
    background: linear-gradient(135deg, #9A7535 0%, #D4AF70 30%, #F5E4A0 50%, #D4AF70 70%, #9A7535 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none;
    filter: none;
}

/* Descrição da hero no light mode */
body.light-mode .hero [data-config="negocio.descricao"] {
    color: #1A1A1A !important;
    text-shadow: none;
}

/* Pill de categoria do hero no light mode */
body.light-mode .hero [data-config="negocio.subtitulo"] {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #1A1A1A !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}


body.light-mode [class*="bg-black/40"] div {
    color: #18181b !important;
}

body.light-mode [class*="bg-black/40"] .text-brand-main {
    color: var(--brand-main) !important;
}

/* Mapa — sem inversão */
body.light-mode iframe {
    filter: none !important;
}

/* Base */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'DM Sans', sans-serif;
    transition: background-color 0.8s var(--ease-premium), color 0.8s var(--ease-premium);
    overflow-x: hidden;
}

/* Container principal - herda cor de fundo */
#root>div {
    background-color: var(--bg-color);
    transition: background-color 0.8s var(--ease-premium);
}

/* ========================================
   HERO VIDEO - Coleção Madame Luxo
   ======================================== */
.hero {
    overflow: hidden;
}

.hero>div:first-of-type {
    overflow: hidden;
    position: absolute;
    inset: 0;
}

.hero video,
.hero-video {
    position: absolute;
    top: 25%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -25%) scale(1.5);
    object-fit: cover;
    z-index: 0;
}

/* Ajuste para vídeo 9:16 - descer a imagem para mostrar estrutura */
.hero video,
.hero-video {
    top: 70% !important;
    transform: translate(-50%, -70%) scale(1.6) !important;
}

/* Zoom extra para cobrir bordas em telas diferentes */
@media (min-aspect-ratio: 16/9) {

    .hero video,
    .hero-video {
        width: 160% !important;
        height: 160% !important;
        top: 65% !important;
        transform: translate(-50%, -65%) scale(1.7) !important;
    }
}

@media (max-aspect-ratio: 9/16) {

    .hero video,
    .hero-video {
        width: 180% !important;
        height: 180% !important;
        top: 75% !important;
        transform: translate(-50%, -75%) scale(1.5) !important;
    }
}

/* Hero Background Image - Fix para imagem estática */
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
}

/* ========================================
   ANIMAÇÕES DE ENTRADA
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-premium), transform 0.6s var(--ease-premium);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SCROLL HORIZONTAL (DEPoIMENTOS / GALERIA)
   ======================================== */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.animate-scroll {
    animation: scroll 40s linear infinite;
}

.animate-scroll-reverse {
    animation: scroll-reverse 45s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ========================================
   MODAIS
   ======================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    border-radius: 1.5rem;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    font-size: 1.2rem;
}

/* ========================================
   IMAGE MODAL
   ======================================== */
.image-modal img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 1rem;
}

/* ========================================
   TOUR 360 MODAL
   ======================================== */
.tour-modal iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 1rem;
}

/* ========================================
   COMPARISON SLIDER
   ======================================== */
.comparison-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
}

.comparison-image {
    width: 100%;
    height: auto;
    display: block;
}

.comparison-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: width 0.1s ease-out;
}

.comparison-overlay img {
    height: 100%;
    width: auto;
    max-width: none;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 50;
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--brand-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    pointer-events: none;
    z-index: 40;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    width: 120px;
    margin: 0 auto 1rem;
    opacity: 0.8;
}

.footer-text {
    font-size: 0.75rem;
    color: var(--brand-gray);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--brand-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-main);
}

/* ========================================
   BEFORE / AFTER COMPARISON (REUTILIZÁVEL)
   ======================================== */
.comparison-wrapper {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.comparison-before,
.comparison-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.comparison-after {
    clip-path: inset(0 50% 0 0);
}

.comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    transform: translateX(-50%);
    z-index: 10;
}

.comparison-divider::after {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--brand-main);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* ========================================
   UTILITÁRIOS
   ======================================== */
.text-brand-main {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-brand-main {
    background-color: var(--brand-main);
}

.border-brand-main {
    border-color: var(--brand-main);
}

/* ========================================
   RESPONSIVIDADE GERAL
   ======================================== */
@media (max-width: 640px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 26px;
    }

    #whatsapp-message {
        width: 220px;
        font-size: 10px;
        padding: 8px 20px 8px 10px;
    }
}

/* ========================================
   ANIMAÇÃO DE PULSE PERSONALIZADA
   ======================================== */
@keyframes pulse-custom {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.pulse-custom-slow {
    animation: pulse-custom 3s ease-in-out infinite;
}

/* ========================================
   ANIMAÇÃO DE SHAKE
   ======================================== */
@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.group-hover\:shake:hover {
    animation: shake 0.4s ease-in-out;
}

/* ========================================
   SCROLL HIDE
   ======================================== */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* ========================================
   ANIMAÇÃO DE SCROLL INFINITO
   ======================================== */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   AJUSTES DE LAYOUT ESPECÍFICOS
   ======================================== */
#root {
    min-height: 100vh;
}

/* ========================================
   COMPARISON SLIDER V2
   ======================================== */
.comparison-slider-container {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.comparison-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.comparison-slider-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-slider-image.after {
    clip-path: inset(0 50% 0 0);
}

.comparison-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--brand-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.comparison-slider-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
}

/* ========================================
   ANTES E DEPOIS - ESTRUTURA FINAL
   ======================================== */
.before-after-wrapper {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    touch-action: pan-y;
}

.before-after-images {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.before-after-base,
.before-after-top {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-top {
    clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0);
}

.before-after-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--split, 50%);
    width: 2px;
    background: white;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.before-after-knob {
    position: absolute;
    top: 50%;
    left: var(--split, 50%);
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--brand-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 11;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.before-after-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
}

.results-badge-abs {
    position: absolute;
    top: 1.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 30;
}

.badge-before-pos {
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(4px);
}

.badge-after-pos {
    right: 1rem;
    background: var(--brand-main);
    color: #fff;
    box-shadow: 0 4px 12px rgba(107, 23, 40, 0.3);
}

.text-brand-main {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override para separadores vinhos no modo claro */
body.light-mode .ticker-content .separator {
    color: var(--brand-main) !important;
    opacity: 1 !important;
}

/* Ticker Animation for Welcome Bar */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.welcome-ticker .separator {
    margin: 0 1.5rem;
    opacity: 0.3;
}

/* ============================================
   BOTÕES FIXOS SUPERIORES (PADRÃO PREMIUM)
   ============================================ */

.theme-toggle.hidden-btn {
    transform: translateX(calc(100% + 1.5rem));
    opacity: 0;
    pointer-events: none;
}

.theme-toggle:hover {
    transform: scale(1.05) rotate(12deg);
    border-color: var(--brand-main);
}

/* 
   AJUSTE DE BORDA DO FOOTER (SOLICITAÇÃO)
   Garante que o footer tenha uma borda dourada/bege premium em ambos os modos
*/
body.dark-mode footer.bg-zinc-900,
body.light-mode footer.bg-zinc-900 {
    border-top: 2.5px solid var(--brand-hover) !important;
}

/* ============================================
   SEÇÃO NOSSOS DIFERENCIAIS — REDESIGN PREMIUM
   ============================================ */

/* ── Cabeçalho da seção ── */
.diferenciais-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-main);
    opacity: 0.85;
    margin-bottom: 8px;
}

.diferenciais-titulo {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 14px;
}

/* Linha decorativa dourada */
.diferenciais-linha {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-main) 0%, var(--brand-hover) 100%);
    border-radius: 2px;
    margin-bottom: 12px;
}

.diferenciais-subtitulo {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--brand-gray);
    max-width: 300px;
}

/* ── Estilos de Diferenciais Simplificados (Herança de index.html) ── */

/* ── Fim dos Estilos de Diferenciais ── */

/* ============================================
   🎥 CARROSSEL DE VÍDEOS 3D (NOSSA ESTRUTURA)
   ============================================ */

.carousel-3d-container {
    perspective: 1200px;
    width: 100%;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.carousel-3d-item {
    position: absolute;
    width: 280px;
    aspect-ratio: 9/16;
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    background: #000;
    box-shadow: 0 10px 30px rgba(60, 41, 14, 0.1), 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estado: Central (Ativo) */
.carousel-3d-item.active {
    z-index: 30;
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 30px 90px rgba(60, 41, 14, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Estado: Esquerda (Pausado/Atrás) */
.carousel-3d-item.left {
    z-index: 20;
    transform: translate3d(-130px, 0, -150px) rotateY(25deg) scale(0.85);
    opacity: 0.6;
    filter: blur(2px) grayscale(0.5);
}

/* Estado: Direita (Pausado/Atrás) */
.carousel-3d-item.right {
    z-index: 20;
    transform: translate3d(130px, 0, -150px) rotateY(-25deg) scale(0.85);
    opacity: 0.6;
    filter: blur(2px) grayscale(0.5);
}

/* Estado: Escondido (Para carrosséis com > 3 itens) */
.carousel-3d-item.hidden {
    z-index: 10;
    transform: translate3d(0, 0, -250px) scale(0.7);
    opacity: 0;
    pointer-events: none;
}

/* Sombreamento degradê nos vídeos laterais */
.carousel-3d-item:not(.active)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(60, 41, 14, 0.8), transparent);
    z-index: 5;
    transition: opacity 0.3s;
}

.carousel-3d-item.active::after {
    opacity: 0;
}

/* Controles de Navegação do Carrossel */
.carousel-controls {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-main);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(200, 169, 106, 0.3);
}

.carousel-btn:active {
    scale: 0.9;
}

/* Ajuste Responsivo Mobile */
@media (max-width: 480px) {
    .carousel-3d-item {
        width: 220px;
    }

    .carousel-3d-item.left {
        transform: translate3d(-80px, 0, -120px) rotateY(20deg) scale(0.8);
    }

    .carousel-3d-item.right {
        transform: translate3d(80px, 0, -120px) rotateY(-20deg) scale(0.8);
    }
}

/* ============================================
   BENTO GRID - NOSSA COLEÇÃO
   ============================================ */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    grid-auto-flow: dense;
}

.bento-cell {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
    grid-column: span 1;
    aspect-ratio: 9 / 16;
}

.bento-cell.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-cell-large {
    grid-column: span 1;
    aspect-ratio: 9 / 16;
}

.bento-cell-tall {
    grid-column: span 1;
    aspect-ratio: 9 / 16;
}

.bento-cell-wide {
    grid-column: span 1;
    aspect-ratio: 9 / 16;
}

.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
    pointer-events: none;
}

.bento-image--top {
    object-position: center top;
}

.bento-image {
    object-position: center center;
}

/* Mobile: imagens horizontais do bento grid mostram o topo também */
@media (max-width: 480px) {
    .bento-cell-wide .bento-image {
        object-position: center top;
    }
}

.bento-cell:hover .bento-image {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 80%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
    gap: 0.25rem;
    transition: background-color 300ms ease;
    z-index: 3;
}

.bento-cell:hover .bento-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.bento-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin: 0;
    transition: transform 300ms ease;
}

.bento-cell:hover .bento-title {
    transform: translateY(-3px);
}

.bento-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    color: var(--brand-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: all 300ms ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bento-cta::after {
    content: '→';
    font-size: 0.85rem;
    transition: transform 200ms ease;
}

.bento-cell:hover .bento-cta {
    opacity: 1;
    transform: translateY(0);
}

.bento-cta:hover::after {
    transform: translateX(4px);
}

/* Light mode adjustments for bento */
body.light-mode .bento-cell::after {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.light-mode .bento-title {
    color: #ffffff !important;
}

body.light-mode .bento-cta {
    color: #C8A96A !important;
}

/* Célula de destaque final - Looks Completos */
body.light-mode .bento-cell-cta {
    background-color: #111111 !important;
}

body.light-mode .bento-cell-cta .bento-image {
    display: block;
    opacity: 0.35;
    filter: grayscale(20%);
}

body.light-mode .bento-cell-cta::before {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

body.light-mode .bento-overlay-cta {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 55%, transparent 100%) !important;
}

body.light-mode .bento-cell-cta .bento-title,
body.light-mode .bento-cell-cta .bento-overlay-cta p.text-white\/80 {
    color: #FFFFFF !important;
}

body.light-mode .bento-cell-cta .bento-overlay-cta p.text-white\/80 {
    opacity: 0.65;
}

body.light-mode .bento-cell-cta .bg-brand-main\/90 {
    background-color: #25D366 !important;
}

body.light-mode .bento-cell-cta .bg-brand-main\/90 i {
    color: #FFFFFF !important;
}

body.light-mode .bento-cell-cta .bento-cta-highlight {
    background: #FFFFFF !important;
    color: #111111 !important;
}

body.dark-mode .bento-cell-cta {
    background-color: #1A1A1A !important;
}

body.dark-mode .bento-cell-cta .bento-image {
    opacity: 0.18;
}

body.dark-mode .bento-overlay-cta {
    background: transparent !important;
}

body.dark-mode .bento-cell-cta .bento-title,
body.dark-mode .bento-cell-cta .bento-overlay-cta p.text-white\/80 {
    color: #FFFFFF !important;
}

body.dark-mode .bento-cell-cta .bg-brand-main\/90 {
    background-color: #25D366 !important;
}

body.dark-mode .bento-cell-cta .bg-brand-main\/90 i {
    color: #FFFFFF !important;
}

/* Botão CTA do card de destaque - sempre visível */
.bento-cell-cta .bento-cta-highlight {
    opacity: 1;
    transform: translateY(0);
}

.bento-cell-cta {
    position: relative;
}

.bento-cell-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    border: 2px solid var(--brand-main);
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(200, 169, 106, 0.3);
}

.bento-overlay-cta {
    align-items: center;
    text-align: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.bento-cta-highlight {
    background: var(--brand-main);
    color: #1A1A1A !important;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.bento-cta-highlight:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(200, 169, 106, 0.4);
}

.bento-cta-highlight::after {
    content: '→';
    font-size: 0.8em;
}

/* Tablet */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .bento-cell,
    .bento-cell-large,
    .bento-cell-wide,
    .bento-cell-tall {
        grid-column: span 1;
        aspect-ratio: 9 / 16;
        min-height: 260px;
    }

    .bento-title {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .bento-cell,
    .bento-cell-large,
    .bento-cell-wide,
    .bento-cell-tall {
        grid-column: span 1;
        aspect-ratio: 9 / 16;
        min-height: 300px;
    }

    .bento-title {
        font-size: 1rem;
    }

    .bento-overlay {
        padding: 0.75rem;
    }

    .bento-cta {
        font-size: 0.65rem;
    }
}

/* ========================================
   SEÇÃO DESTAQUES MOSAIC - FOTOS 9:16
   ======================================== */

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

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    cursor: zoom-in;
    aspect-ratio: 9 / 16;
    min-width: 0;
    width: 100%;
}

body.dark-mode .mosaic-item {
    border-color: rgba(255, 255, 255, 0.1);
}

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

.mosaic-item-large {
    grid-column: span 1;
    aspect-ratio: 9 / 16;
}

/* Tablet */
@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .mosaic-item {
        aspect-ratio: 9 / 16;
        border-radius: 1rem;
    }

    .mosaic-item-large {
        grid-column: span 1;
        aspect-ratio: 9 / 16;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .mosaic-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
        width: 100%;
    }

    .mosaic-item {
        aspect-ratio: 9 / 16;
        border-radius: 0.75rem;
        min-width: 0;
        width: 100%;
    }

    .mosaic-item-large {
        grid-column: span 1;
        aspect-ratio: 9 / 16;
    }
}

/* Saudação minimalista abaixo do ticker */
.greeting-minimal {
    text-align: center;
    padding: 0.6rem 1rem;
}

.greeting-minimal__text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #9A7535 0%, #D4AF70 30%, #F5E4A0 50%, #D4AF70 70%, #9A7535 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.85;
}
