/* DESIGN SYSTEM - AURA GLACIAR */
:root {
    --bg: #F8F7F4;
    --text: #1C1C1C;
    --accent: #B0A18F;
    --white: #FFFFFF;
    --gray-light: #E0E0E0;
    --gold: #D4AF37;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* Marquee */
.top-marquee {
    background: var(--text);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    font-size: 0.6rem;
    letter-spacing: 2px;
}
.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-content span { padding: 0 40px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Navbar */
.main-nav {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(248, 247, 244, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; max-width: 1600px; margin: 0 auto;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; letter-spacing: 5px; font-weight: 700; }
.logo span { font-weight: 300; opacity: 0.5; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.search-bar { position: relative; }
.search-bar input {
    background: var(--white); border: 1px solid #ddd; border-radius: 30px;
    padding: 8px 15px 8px 35px; outline: none; width: 200px; font-size: 0.8rem;
}
.search-bar i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); opacity: 0.4; }
.cart-icon { cursor: pointer; position: relative; font-size: 1.2rem; }
#cart-count {
    position: absolute; top: -10px; right: -12px;
    background: var(--gold); color: white; font-size: 0.6rem;
    padding: 2px 6px; border-radius: 50%;
}

/* Hero Slider */
.hero-slider { height: 85vh; position: relative; overflow: hidden; }
.slide {
    position: absolute; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1.5s ease;
    display: flex; align-items: center; padding: 0 10%;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img { position: absolute; top:0; left:0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: brightness(0.8); }
.slide-text { color: white; max-width: 600px; }
.slide-text span { text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; }
.slide-text h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; line-height: 1.1; margin: 20px 0; }
.btn-primary {
    display: inline-block; padding: 15px 40px; border: 1px solid white;
    color: white; text-decoration: none; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 2px;
}

/* Ad Banner Strip */
.ad-banner-strip {
    background: #EBE9E4; padding: 40px 0; text-align: center;
}
.ad-content h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin: 10px 0; letter-spacing: 2px; }
.ad-content p { font-size: 0.8rem; opacity: 0.7; }

/* Catalog Section */
.catalog-section { padding: 80px 5%; max-width: 1600px; margin: 0 auto; }
.section-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.section-title h2 { font-family: 'Playfair Display', serif; font-size: 2rem; }
.filter-pills { display: flex; gap: 10px; }
.pill {
    background: none; border: 1px solid #ddd; padding: 8px 20px;
    border-radius: 40px; cursor: pointer; font-size: 0.7rem; text-transform: uppercase;
}
.pill.active { background: var(--text); color: white; border-color: var(--text); }

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}
.product-card {
    background: var(--white); padding: 20px;
    transition: var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.product-card img { width: 100%; height: 350px; object-fit: cover; margin-bottom: 20px; }
.product-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 5px; }
.product-card p { font-size: 0.75rem; color: #888; margin-bottom: 15px; text-transform: uppercase; }
.price-tag { font-weight: 700; display: block; margin-bottom: 20px; font-size: 1rem; }
.btn-buy {
    width: 100%; padding: 12px; border: 1px solid var(--text);
    background: none; cursor: pointer; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
}
.btn-buy:hover { background: var(--text); color: white; }

/* Lifestyle Ad */
.lifestyle-ad { display: grid; grid-template-columns: 1fr 1fr; height: 70vh; margin: 100px 0; background: var(--white); }
.lifestyle-img img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-text { padding: 10%; display: flex; flex-direction: column; justify-content: center; }
.lifestyle-text span { color: var(--accent); text-transform: uppercase; letter-spacing: 3px; }
.lifestyle-text h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin: 20px 0; }
.btn-dark {
    width: fit-content; padding: 15px 40px; background: var(--text);
    color: white; border: none; text-transform: uppercase; cursor: pointer;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed; right: -450px; top: 0; width: 400px; height: 100vh;
    background: var(--white); z-index: 2000; transition: var(--transition);
    padding: 40px; display: flex; flex-direction: column; box-shadow: -10px 0 50px rgba(0,0,0,0.1);
}
.cart-sidebar.active { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.cart-body { flex-grow: 1; overflow-y: auto; margin: 20px 0; }
.cart-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
.cart-item img { width: 60px; height: 80px; object-fit: cover; }
.cart-footer { border-top: 1px solid #eee; padding-top: 20px; }
.total-info { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; }
.checkout-btn { width: 100%; padding: 20px; background: #25D366; color: white; border: none; font-weight: 700; cursor: pointer; }

/* Footer */
.main-footer { background: #111; color: white; padding: 80px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-col h4 { margin-bottom: 20px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; }
.footer-col a { display: block; color: #888; text-decoration: none; margin-bottom: 10px; font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid #222; padding-top: 30px; text-align: center; font-size: 0.7rem; opacity: 0.4; }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .lifestyle-ad { grid-template-columns: 1fr; height: auto; }
}
/* --- ESTILOS DA ANIMAÇÃO DE ENTRADA --- */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #111; /* Fundo luxo escuro */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Fica acima de tudo */
    transition: opacity 1s ease-in-out, visibility 1s;
}

.intro-content {
    text-align: center;
    color: white;
}

.intro-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    letter-spacing: 15px; /* Começa com letras juntas */
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0;
    animation: revealLogo 2.5s forwards cubic-bezier(0.2, 0, 0.2, 1);
}

.intro-logo span {
    font-weight: 300;
    opacity: 0.6;
}

.intro-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    animation: expandLine 1.5s 0.8s forwards;
}

.intro-subtitle {
    font-size: 0.7rem;
    letter-spacing: 5px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInSubtitle 1s 1.8s forwards;
}

/* Keyframes das Animações */
@keyframes revealLogo {
    0% {
        opacity: 0;
        letter-spacing: 0px;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        letter-spacing: 15px;
        filter: blur(0);
    }
}

@keyframes expandLine {
    to { width: 100px; }
}

@keyframes fadeInSubtitle {
    to {
        opacity: 0.6;
        transform: translateY(0);
    }
}

/* Classe para sumir com a tela de intro */
.intro-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Evitar scroll enquanto a animação acontece */
body.stop-scroll {
    overflow: hidden;
}
/* --- ESTILOS DA PROPAGANDA PEQUENA (SECONDARY ADS) --- */
.secondary-ads {
    width: 100%;
    padding: 20px 5%;
    background: #000;
}

.mini-banner-container {
    width: 100%;
    max-width: 1400px;
    height: 120px; /* Altura pequena e profissional */
    margin: 0 auto;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.mini-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 40px;
    opacity: 0;
    transition: all 0.8s ease-in-out;
    transform: translateX(20px);
}

.mini-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 5;
}

.mini-slide img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #FF6B00;
    margin-right: 30px;
}

.mini-slide-content {
    display: flex;
    flex-direction: column;
}

.mini-tag {
    background: #FF6B00;
    color: #000;
    font-size: 0.6rem;
    padding: 2px 8px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: inline-block;
}

.mini-slide-content h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 2px;
}

.mini-slide-content p {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

.neon-orange {
    color: #FF6B00;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

/* Barra de progresso visual */
.mini-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.05);
}

.mini-progress-fill {
    width: 0%;
    height: 100%;
    background: #FF6B00;
}

/* Responsividade */
@media (max-width: 768px) {
    .mini-banner-container { height: 180px; }
    .mini-slide { flex-direction: column; text-align: center; justify-content: center; }
    .mini-slide img { margin: 0 0 10px 0; }
}
/* --- MELHORIAS DE MINIMALISMO --- */
:root {
    --bg-pure: #FBFBFA;
    --text-muted: #666666;
}

/* Revelação Suave ao Rolar */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Grade de Produtos mais "Clean" */
.product-card {
    border: none;
    padding: 0;
    background: transparent;
}

.product-card img {
    border-radius: 2px; /* Quase nada de arredondado para parecer editorial */
    filter: saturate(0.9);
    transition: filter 0.5s ease;
}

.product-card:hover img {
    filter: saturate(1.1);
}

.product-card h3 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 15px;
    font-weight: 400;
}

.price-tag {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Seção de Logos (Trust Badges) */
.trust-badges {
    padding: 60px 5%;
    display: flex;
    justify-content: center;
    gap: 80px;
    opacity: 0.4;
    filter: grayscale(1);
}

.trust-badges img {
    height: 25px;
}

/* Botões Minimalistas */
.btn-buy {
    border: 1px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    font-size: 0.65rem;
    padding: 10px;
    letter-spacing: 2px;
}

.btn-buy:hover {
    background: #1a1a1a;
    color: #fff;
}
/* --- ANIMAÇÃO NO HOVER DO PRODUTO --- */
.product-card {
    cursor: pointer;
    overflow: hidden;
}

.product-card .img-wrapper {
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.product-card img {
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s ease;
}

/* Quando passa o mouse no card, a imagem cresce suavemente */
.product-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

/* --- ESTILOS DO MODAL (TELA CHEIA) --- */
.product-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98); /* Fundo branco quase opaco para minimalismo */
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 1000px;
    animation: modalFadeIn 0.5s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 35px;
    cursor: pointer;
    font-weight: 200;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.modal-img-container img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.modal-cat {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: 10px;
}

#modalName {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 300;
    display: block;
    margin-bottom: 30px;
}

.modal-description h4 {
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-description p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsivo para o Modal */
@media (max-width: 768px) {
    .modal-body { grid-template-columns: 1fr; }
    .modal-content { margin: 10% auto; padding: 20px; }
}
/* --- ESTILO CARROSSEL FOCUS (IGUAL À IMAGEM) --- */
.focus-carousel-section {
    width: 100%;
    padding: 100px 0;
    /* Fundo degradê suave da imagem 2 */
    background: #fff;
    background: #fff;
    background: linear-gradient(135deg, #f8eee1 0%, #f8eee1 100%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.focus-card {
    width: 320px; /* Largura do card */
    height: 420px; /* Altura do card */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s ease;
    /* Efeito de card fora de foco */
    transform: scale(0.8);
    opacity: 0.5;
    filter: blur(1px);
}

.card-image {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 25px; /* Bordas bem arredondadas como na imagem */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mantém a proporção do frasco */
}

/* --- ESTILO DO CARD CENTRAL (ATIVO) --- */
.focus-card.active {
    transform: scale(1.1); /* Fica maior */
    opacity: 1;
    filter: blur(0);
    z-index: 10;
}

.card-title {
    margin-top: 20px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #a89485; /* Cor do texto da imagem 1 */
    font-weight: 400;
    text-transform: uppercase;
}

/* Responsividade para celular */
@media (max-width: 768px) {
    .focus-card { width: 220px; height: 320px; }
    .focus-card.active { transform: scale(1.05); }
}
/* --- MOVING FRAMES (MARQUEE) --- */
.moving-frames-section {
    background: var(--white);
    padding: 40px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-light);
}

.frames-track {
    display: flex;
    width: max-content;
    animation: scrollFrames 30s linear infinite;
}

.mini-frame {
    width: 200px;
    margin: 0 30px;
    text-align: center;
    flex-shrink: 0;
}

.mini-frame img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(1);
    transition: 0.5s ease;
    border-radius: 2px;
}

.mini-frame:hover img {
    filter: grayscale(0);
}

.mini-frame span {
    display: block;
    margin-top: 15px;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

@keyframes scrollFrames {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- DISCOVERY GRID --- */
.discovery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px; /* Linha divisória fina */
    background: var(--gray-light); /* Cor da divisória */
    padding: 0;
    margin: 0;
}

.ad-box {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--white);
}

.ad-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ad-box:hover img {
    transform: scale(1.05);
}

.ad-box-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--white);
    z-index: 2;
}

/* Overlay escuro suave para leitura */
.ad-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.ad-box-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.ad-box-text p {
    font-size: 0.8rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.link-explore {
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--white);
    padding-bottom: 5px;
    transition: 0.3s;
}

.link-explore:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Responsivo */
@media (max-width: 768px) {
    .discovery-grid { grid-template-columns: 1fr; }
    .ad-box { height: 400px; }
}
/* --- AJUSTES GERAIS DE RESPONSIVIDADE --- */

/* Esconder busca no mobile para limpar o topo */
@media (max-width: 768px) {
    .d-none-mobile { display: none; }
    
    .logo { font-size: 1.2rem; letter-spacing: 3px; }

    /* Menu Hamburguer */
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        order: -1; /* Coloca o ícone à esquerda */
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        gap: 0;
        transition: 0.4s;
        z-index: 999;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        display: block;
        padding: 20px;
        font-size: 0.9rem;
    }

    /* Hero Slider Mobile */
    .slide-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-slider { height: 70vh; }

    /* Seções Lado a Lado (Spotlight) */
    .spotlight-section > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .spotlight-img img {
        height: 350px !important;
    }

    /* Carrinho Mobile */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    /* Grid de Produtos (2 colunas no celular) */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .product-card img {
        height: 200px;
    }

    .product-card h3 { font-size: 0.8rem; }
}

/* Ajustes Extras de Imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.intro-logo {
    font-size: 1.8rem; /* Menor no celular */
}

/* Estilo do botão de fechar do menu no mobile se necessário */
.menu-toggle.active i::before {
    content: "\f00d"; /* Ícone de X da FontAwesome */
}
@media (max-width: 768px) {
    .section-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 24px;
    }

    .section-title h2 {
        width: 100%;
        font-size: 2rem;
        line-height: 1.05;
        margin: 0;
    }

    .filter-pills {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
    }

    .pill {
        padding: 8px 14px;
        font-size: 0.68rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.7rem;
    }

    .filter-pills {
        gap: 6px;
    }

    .pill {
        padding: 7px 12px;
        font-size: 0.62rem;
    }
}
@media (max-width: 768px) {
    .section-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 16px;
    }

    .section-title h2 {
        display: block;
        width: 100%;
        margin-bottom: 0;
    }

    .filter-pills {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
    }
}
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .product-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .product-card img {
        width: 100% !important;
        height: 220px !important;
        object-fit: contain !important;
        margin-bottom: 12px !important;
    }

    .product-card h3 {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        margin-top: 8px !important;
    }

    .product-card p {
        font-size: 0.72rem !important;
        margin-bottom: 8px !important;
    }

    .price-tag {
        font-size: 1rem !important;
        margin-bottom: 14px !important;
    }

    .btn-buy {
        width: 100% !important;
        padding: 12px !important;
        font-size: 0.68rem !important;
    }
}

@media (max-width: 480px) {
    .product-card img {
        height: 180px !important;
    }

    .product-card h3 {
        font-size: 0.88rem !important;
    }

    .price-tag {
        font-size: 0.92rem !important;
    }

    .btn-buy {
        font-size: 0.62rem !important;
        padding: 11px !important;
    }
}
.promo-white {
    width: 100%;
    padding: 80px 5%;
    background: #f5f2ee; /* COR IGUAL DA IMAGEM */
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.promo-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGEM */
.promo-image {
    background: transparent;
}

.promo-image img {
    width: 100%;
    height: auto;
}

/* TEXTO */
.promo-tag {
    color: #b08b6a; /* marrom claro elegante */
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* TITULO */
.promo-text h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin: 15px 0;
    font-weight: 600;
    line-height: 1.2;
}

/* DESCRIÇÃO */
.promo-desc {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 500px;
}

/* BOTÃO (PRETO IGUAL DA IMAGEM) */
.promo-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: 0.3s;
}

.promo-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .promo-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-text h1 {
        font-size: 2rem;
    }

    .promo-desc {
        margin: auto;
    }
}
/* GRID RESPONSIVO SEM ALTERAR DESIGN */
.product-grid {
    display: grid;
}

/* CELULAR */
@media (max-width: 768px) {
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-card {
        width: auto !important;
    }
}
/* GARANTE GRID ORGANIZADO */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ESSENCIAL */
    height: 100%; /* deixa todos iguais */
}

/* CONTEÚDO INTERNO */
.product-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* IMAGEM IGUAL PRA TODOS */
.product-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

/* EMPURRA BOTÃO PRA BAIXO */
.product-card .btn-buy {
    margin-top: auto;
}
/* Mobile */
@media (max-width: 900px) {
    .px-container { flex-direction: column; height: auto; }
    .px-column { height: 300px; border-bottom: 1px solid #222; }
    .px-preview-container { bottom: -150px; }
}
.checkout-register {
    margin-bottom: 12px;
    max-height: 190px;
    overflow-y: auto;
    padding-right: 4px;
}

.checkout-register input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 6px;
    padding: 7px 9px;
    border-radius: 7px;
    border: 1px solid rgb(255, 255, 255);
    background: #0a0a0a;
    color: #fff;
    outline: none;
    font-size: 0.8rem;
}