:root {
    --preto:        #0a0a0a;
    --preto-alt:    #111111;
    --preto-card:   #161616;
    --dourado:      #c9a84c;
    --dourado-light:#e8c96a;
    --dourado-dark: #a07830;
    --gradiente-ouro: linear-gradient(135deg, #c9a84c 0%, #e8c96a 50%, #a07830 100%);
    --branco:       #ffffff;
    --texto-muted:  rgba(255,255,255,0.6);
    --borda:        rgba(201,168,76,0.2);
    --surface:      rgba(201,168,76,0.06);
    --wpp:          #25D366;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--preto);
    color: var(--branco);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.font-assinatura {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.text-center { text-align: center; }
.text-ouro { color: var(--dourado); }

/* Componentes / Utilitários */
.section-padding {
    padding: 100px 0;
}

.linha-decorativa {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--borda), transparent);
}

.badge-ouro {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dourado);
    border: 1px solid var(--borda);
    padding: 6px 16px;
    border-radius: 99px;
    background: var(--surface);
    margin-bottom: 24px;
}

.btn-ouro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradiente-ouro);
    color: var(--preto);
    font-weight: 700;
    border: none;
    border-radius: 99px;
    padding: 14px 32px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
    text-align: center;
}

.btn-ouro:hover {
    box-shadow: 0 8px 32px rgba(201,168,76,0.5);
    transform: translateY(-2px);
    color: var(--preto);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--dourado);
    font-weight: 500;
    border: 1px solid var(--dourado);
    border-radius: 99px;
    padding: 13px 32px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--surface);
    box-shadow: 0 4px 20px rgba(201,168,76,0.15);
    transform: translateY(-2px);
}

.btn-wpp-verde {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--wpp);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 99px;
    padding: 14px 32px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wpp-verde:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.preco {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Logo HTML/CSS */
.logo-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    text-decoration: none;
    transform: scale(0.9);
}
.logo-icon-custom {
    font-size: 2rem;
    color: var(--dourado);
    margin-bottom: -5px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.logo-nome-custom {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    color: var(--branco);
    font-weight: 400;
}
.logo-desc-custom {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    color: var(--branco);
    letter-spacing: 2px;
}
.logo-desc-custom i {
    color: var(--dourado);
    font-style: italic;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 1px;
}

.logo-custom.vertical {
    transform: scale(1.5);
    margin-bottom: 20px;
}
.footer .logo-custom {
    transform: scale(0.7);
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--preto);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.header.scrolled {
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--branco);
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dourado);
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--dourado);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--dourado-light);
    background: var(--surface);
}

/* Mobile Menu Drawer & Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, #161616 0%, #0c0c0c 100%);
    border-left: 1px solid rgba(201, 168, 76, 0.25);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.85);
    padding: 24px 20px;
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    transform: translateX(0);
}

.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    margin-bottom: 24px;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--dourado);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(201, 168, 76, 0.2);
    color: #fff;
    transform: rotate(90deg);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.mobile-nav-item i {
    font-size: 1.2rem;
    color: var(--dourado);
    transition: transform 0.25s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--dourado-light);
    transform: translateX(4px);
}

.mobile-nav-item:hover i {
    transform: scale(1.15);
}

.mobile-nav-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--texto-muted);
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    width: 500px;
    height: 500px;
    background: var(--dourado-dark);
    top: -100px;
    left: -150px;
    opacity: 0.25;
}

.hero::after {
    width: 600px;
    height: 600px;
    background: var(--dourado-dark);
    bottom: -200px;
    right: -100px;
    opacity: 0.2;
}

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

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--branco);
}

.hero-title i {
    color: var(--dourado);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--texto-muted);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-diferenciais {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--texto-muted);
}

.hero-diferenciais span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-diferenciais i {
    color: var(--dourado);
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   Hero Perfume Showcase Slider
   ========================================================================== */
.hero-slider-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(26, 26, 26, 0.78) 0%, rgba(14, 14, 14, 0.95) 100%);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 28px;
    padding: 24px 20px 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
                0 0 35px rgba(201, 168, 76, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    user-select: none;
}

.hero-slider-spotlight {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.22) 0%, rgba(201, 168, 76, 0.03) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-slider-track-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    cursor: grab;
}

.hero-slider-track-container:active {
    cursor: grabbing;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4px 8px;
    opacity: 0.35;
    transform: scale(0.92);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-slide-badge {
    margin-bottom: 10px;
}

.hero-slide-badge span {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dourado-light);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 5px 14px;
    border-radius: 99px;
}

.hero-slide-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.hero-slide-img {
    max-height: 220px;
    max-width: 80%;
    object-fit: contain;
    filter: drop-shadow(0 18px 25px rgba(0,0,0,0.85)) drop-shadow(0 0 15px rgba(201,168,76,0.2));
    animation: heroBottleFloat 4.5s ease-in-out infinite;
}

@keyframes heroBottleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(0.8deg);
    }
}

.hero-slide-podium {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 16px;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.5) 0%, rgba(0,0,0,0.6) 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(4px);
    z-index: -1;
}

.hero-slide-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-slide-title {
    font-size: 1.85rem;
    color: var(--branco);
    margin-bottom: 2px;
    line-height: 1.2;
}

.hero-slide-notes {
    font-size: 0.88rem;
    color: var(--texto-muted);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.hero-slide-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

.hero-slide-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e8c96a 0%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-slide-installments {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 270px;
    padding: 12px 20px;
    background: var(--gradiente-ouro);
    color: var(--preto);
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 99px;
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
    transition: all 0.3s ease;
}

.hero-slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.55);
    color: var(--preto);
}

/* Setas de navegação */
.hero-slider-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--dourado-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
    background: var(--dourado);
    color: var(--preto);
    border-color: var(--dourado);
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.6);
    transform: translateY(-50%) scale(1.08);
}

.hero-slider-arrow.prev {
    left: 8px;
}

.hero-slider-arrow.next {
    right: 8px;
}

/* Paginação (Dots) */
.hero-slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    position: relative;
    z-index: 5;
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: rgba(201, 168, 76, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.hero-slider-dot:hover {
    background: rgba(201, 168, 76, 0.6);
}

.hero-slider-dot.active {
    width: 26px;
    background: var(--gradiente-ouro);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

/* Mais Vendidos */
#mais-vendidos {
    background-color: var(--preto-alt);
}

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

.section-title {
    font-size: 3rem;
    color: var(--branco);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--texto-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.produto-card {
    background: var(--preto-card);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.produto-card:hover {
    border-color: rgba(201,168,76,0.6);
    box-shadow: 0 12px 40px rgba(201,168,76,0.12);
    transform: translateY(-8px);
}

.produto-img {
    height: 240px;
    background: #1a1a1a;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.produto-img i {
    font-size: 4rem;
    color: rgba(201,168,76,0.3);
    transition: all 0.3s;
}

.produto-card:hover .produto-img i {
    transform: scale(1.1);
    color: rgba(201,168,76,0.6);
}

.produto-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    border: 1px solid var(--borda);
    color: var(--dourado);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.produto-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.produto-nome {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--branco);
}

.produto-preco-wrapper {
    margin-top: auto;
    margin-bottom: 20px;
}

.produto-card .btn-outline {
    width: 100%;
}

.nota-cards {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
    color: var(--texto-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.nota-cards i {
    font-size: 1.3rem;
    color: var(--dourado);
}

/* Catálogo / Marcas */
#catalogo {
    background-color: var(--preto);
}

.marcas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.marca-card {
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s;
}

.marca-card:hover {
    transform: translateY(-5px);
}

.marca-boticario {
    background: linear-gradient(135deg, rgba(16, 24, 20, 0.9), rgba(0, 40, 20, 0.4));
    border: 1px solid rgba(0,150,80,0.3);
}

.marca-natura {
    background: linear-gradient(135deg, rgba(24, 18, 10, 0.9), rgba(60, 25, 0, 0.4));
    border: 1px solid rgba(220,120,0,0.3);
}

.marca-logo-placeholder {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.marca-boticario .marca-logo-placeholder { color: #8ae5b9; }
.marca-natura .marca-logo-placeholder { color: #ffb880; }

.marca-linhas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.marca-linhas span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.05);
    padding: 6px 14px;
    border-radius: 99px;
}

.marca-outras {
    background: var(--preto-card);
    border: 1px dashed var(--borda);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Banner Promoção */
.banner-promo {
    background: linear-gradient(135deg, #1a1200, #2a1f00, #1a1200);
    border-top: 1px solid var(--borda);
    border-bottom: 1px solid var(--borda);
    padding: 80px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-text-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-icon {
    font-size: 4rem;
    color: var(--dourado);
    background: var(--surface);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--borda);
}

.banner-title {
    font-size: 2.5rem;
    color: var(--dourado-light);
    margin-bottom: 8px;
}

.banner-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 500px;
}

/* Sobre */
#sobre {
    background-color: var(--preto-alt);
}

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

.sobre-texto {
    font-size: 1.1rem;
    color: var(--texto-muted);
    margin-bottom: 30px;
}

.sobre-lista {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.sobre-lista li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--branco);
    font-size: 1.05rem;
}

.sobre-lista i {
    color: var(--dourado);
}

/* Contato */
#contato {
    background-color: var(--preto);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contato-card {
    background: var(--preto-card);
    border: 1px solid var(--borda);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.contato-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201,168,76,0.5);
}

.contato-icon {
    font-size: 2.5rem;
    color: var(--dourado);
    margin-bottom: 20px;
}

.contato-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.contato-card-desc {
    color: var(--texto-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.cta-final {
    text-align: center;
    padding: 60px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.05));
    border-radius: 30px;
    border: 1px solid rgba(201,168,76,0.1);
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-infos {
    color: var(--texto-muted);
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-infos span {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-infos span:not(:last-child)::after {
    content: '•';
    color: var(--dourado);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--branco);
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-social a {
    font-size: 1.5rem;
    color: var(--dourado);
    transition: all 0.3s;
    display: inline-block;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--dourado-light);
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Botão Flutuante */
.btn-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--wpp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-flutuante.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-flutuante:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-diferenciais {
        justify-content: center;
    }
    .hero-image {
        height: auto;
        margin-top: 20px;
    }
    .hero-slider-card {
        max-width: 440px;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marcas-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    .banner-text-wrapper {
        flex-direction: column;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sobre-lista {
        align-items: center;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-btn, .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-buttons a {
        width: 100%;
    }
    .hero-slider-card {
        padding: 20px 14px 16px;
        border-radius: 22px;
    }
    .hero-slide-img-wrapper {
        height: 210px;
    }
    .hero-slide-img {
        max-height: 180px;
    }
    .hero-slide-title {
        font-size: 1.6rem;
    }
    .hero-slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    .hero-slider-arrow.prev { left: 4px; }
    .hero-slider-arrow.next { right: 4px; }
    .section-title {
        font-size: 2.2rem;
    }
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    .banner-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-slider-card {
        padding: 18px 12px 14px;
    }
    .hero-slide-img-wrapper {
        height: 190px;
    }
    .hero-slide-img {
        max-height: 165px;
    }
}

.produto-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* ============================================================
   LGPD — Banner de Cookies
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 16px 16px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-banner__inner {
    max-width: 960px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 20px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 168, 76, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cookie-banner__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dourado);
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 4px;
}

.cookie-banner__desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.cookie-banner__desc strong {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.cookie-banner__link {
    color: var(--dourado);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.cookie-banner__link:hover {
    color: var(--dourado-light);
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    border: none;
    border-radius: 99px;
    padding: 11px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner__btn--recusar {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--recusar:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--branco);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-banner__btn--aceitar {
    background: var(--gradiente-ouro);
    color: var(--preto);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.cookie-banner__btn--aceitar:hover {
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.5);
    transform: translateY(-1px);
}

/* Afasta botão flutuante do WhatsApp quando o banner está visível */
.cookie-banner--visible ~ * .btn-flutuante,
body:has(.cookie-banner--visible) .btn-flutuante {
    bottom: 110px;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 0 10px 10px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 18px;
        border-radius: 16px;
    }

    .cookie-banner__icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .cookie-banner__title {
        font-size: 1rem;
    }

    .cookie-banner__desc {
        font-size: 0.78rem;
    }

    .cookie-banner__actions {
        width: 100%;
        gap: 8px;
    }

    .cookie-banner__btn {
        flex: 1;
        padding: 12px 12px;
        font-size: 0.82rem;
        text-align: center;
    }

    /* Botão WhatsApp não sobrepõe banner em mobile */
    body:has(.cookie-banner--visible) .btn-flutuante {
        bottom: 200px;
    }
}

@media (max-width: 380px) {
    .cookie-banner__actions {
        flex-direction: column;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .preco {
        font-size: 1.5rem;
    }
}
