/* ═══════════════════════════════════════════════
   CACAUSHOW PÁSCOA – ESTILOS GLOBAIS
   Tema: Identidade oficial Cacaushow + Páscoa 2026
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

:root {
    /* ── Paleta Oficial Cacaushow ── */
    --brand-dark: #2a2a2a;
    /* header, footer – quase preto oficial */
    --brand-dark2: #1e1e1e;
    /* sombra do header */
    --brand-green: #4a7c3f;
    /* botão "Adicionar ao Carrinho" – verde oliva */
    --brand-green2: #3d6a33;
    /* hover do verde */
    --brand-wine: #7a1c1c;
    /* badge Cacaus / destaque */
    --brand-tan: #a0785a;
    /* botão secundário / login */
    --brand-tan2: #8a6248;
    /* hover tan */

    /* ── Fundo Cacaushow (azul acinzentado clarinho) ── */
    --bg-main: #eef2f7;
    /* fundo das seções de produto */
    --bg-card: #ffffff;
    /* cards brancos */
    --bg-section: #f8f9fb;
    /* seções alternadas */
    --bg-header: #2a2a2a;
    /* header escuro */

    /* ── Cores de texto ── */
    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --text-muted: #7a7a7a;
    --text-light: #ffffff;

    /* ── Acento Páscoa (dourado/rosa suave) ── */
    --easter-gold: #c8960c;
    --easter-pink: #d4438a;
    --easter-cream: #fdf6ed;

    /* Aliases para compatibilidade com código existente */
    --choco: var(--brand-dark);
    --choco-2: #333333;
    --choco-3: #3d3d3d;
    --choco-4: #4a4a4a;
    --choco-5: var(--brand-tan);
    --gold: var(--easter-gold);
    --gold-light: #f0c040;
    --gold-dark: #a67c00;
    --rose: var(--easter-pink);
    --rose-light: #e06aaa;
    --cream: var(--easter-cream);
    --cream-2: #fdf0e0;
    --text: var(--text-light);
    --text-faint: #555555;
    --green: var(--brand-green);
    --red: #c0392b;

    --font-main: 'Lato', sans-serif;
    --font-display: 'Playfair Display', serif;

    --radius: 6px;
    --radius-lg: 12px;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 0 30px rgba(200, 150, 12, 0.2);
    --shadow-choco: 0 8px 30px rgba(42, 42, 42, 0.4);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #e0e0e0;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-tan);
    border-radius: 10px;
}

/* ══ BG DECORATION (removido no estilo oficial) ══ */

/* ══ HEADER ══════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--brand-dark);
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    background: var(--brand-dark2);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    color: #ffffff;
}

.logo-accent {
    color: var(--brand-green);
}

.logo-sub {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-green);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.cart-btn {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-btn:hover {
    background: var(--brand-green2);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(74, 124, 63, 0.35);
}

.cart-count {
    background: white;
    color: var(--rose);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ══ CART SIDEBAR ════════════════════════════ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1090;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #e0e0e0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100vw;
    color: var(--text-dark);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-close {
    background: none;
    border: none;
    color: #777;
    font-size: 1.2rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-close:hover {
    background: #f0f0f0;
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    margin: auto;
}

.cart-item {
    display: flex;
    gap: 12px;
    background: var(--bg-section);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 12px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.cart-item-weight {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: white;
}

.qty-value {
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-faint);
    cursor: pointer;
    font-size: 0.85rem;
    margin-left: auto;
    align-self: flex-start;
    transition: var(--transition);
}

.remove-item:hover {
    color: var(--red);
}

.cart-footer {
    padding: 16px 24px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fafafa;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #666;
}

.total-final {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--brand-green) !important;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
}

.total-final span {
    color: var(--brand-green) !important;
}

.btn-checkout {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--radius);
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-checkout:hover {
    background: var(--brand-green2);
    box-shadow: 0 8px 20px rgba(74, 124, 63, 0.35);
}

/* ══ HERO ════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(26, 26, 26, 0.92) 0%,
            rgba(26, 26, 26, 0.6) 55%,
            rgba(26, 26, 26, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 64px 80px;
    max-width: 660px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-green);
    color: white;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.1s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-accent {
    color: var(--easter-gold);
    -webkit-text-fill-color: var(--easter-gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 248, 240, 0.8);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeUp 0.8s ease 0.4s both;
}

.btn-primary {
    background: var(--brand-green);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 900;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--brand-green2);
    box-shadow: 0 10px 28px rgba(74, 124, 63, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: fadeUp 0.8s ease 0.5s both;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--easter-gold);
}

.stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 160, 23, 0.3);
}

/* Countdown timer na hero */
.hero-countdown {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease 0.45s both;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--rose-light);
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 8px;
    align-items: center;
}

.count-box {
    background: rgba(233, 30, 140, 0.2);
    border: 1px solid rgba(233, 30, 140, 0.4);
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
}

.count-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--rose-light);
    line-height: 1;
}

.count-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.count-sep {
    color: var(--rose-light);
    font-weight: 900;
    font-size: 1.2rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ══ BENEFITS ════════════════════════════════ */
.benefits {
    background: var(--choco-3);
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    padding: 20px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
}

.benefit-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ══ SEÇÃO PRODUTOS ══════════════════════════ */
.produtos-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--brand-green);
    color: white;
    padding: 5px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
}

.produto-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-card);
}

.produto-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-green);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(74, 124, 63, 0.1);
}

.produto-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-section);
}

.produto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.produto-card:hover .produto-img {
    transform: scale(1.08);
}

.produto-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-wine);
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.produto-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: white;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.produto-peso {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: var(--cream);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
}

.produto-body {
    padding: 20px;
}

.produto-tipo {
    font-size: 0.72rem;
    color: var(--brand-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.produto-nome {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.produto-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.produto-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.produto-preco {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--brand-green);
}

.produto-preco-antigo {
    font-size: 0.88rem;
    color: var(--text-faint);
    text-decoration: line-through;
}

.produto-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    flex: 1;
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart:hover {
    background: var(--brand-green2);
    box-shadow: 0 6px 16px rgba(74, 124, 63, 0.35);
}

.btn-details {
    background: #f5f5f5;
    color: var(--text-body);
    border: 1px solid #e0e0e0;
    padding: 12px 14px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-details:hover {
    background: var(--brand-tan);
    border-color: var(--brand-tan);
    color: white;
}

/* Spinner */
.loading-produtos {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px;
    color: var(--text-muted);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(74, 124, 63, 0.2);
    border-top-color: var(--brand-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ══ SOBRE / GARANTIA ════════════════════════ */
.sobre {
    padding: 100px 0;
    background: var(--bg-section);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin: 12px 0 18px;
}

.sobre-content p {
    color: var(--text-body);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.sobre-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sobre-lista li {
    font-size: 0.95rem;
    color: var(--text-body);
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8;
}

.sobre-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid #e0e0e0;
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Garantia */
.garantia {
    padding: 80px 0;
}

.garantia-card {
    background: var(--bg-card);
    border: 2px solid var(--brand-green);
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.garantia-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.garantia-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 16px;
}

.garantia-card p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.garantia-selos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.selo {
    background: rgba(74, 124, 63, 0.08);
    border: 1px solid rgba(74, 124, 63, 0.3);
    color: var(--brand-green);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Depoimentos */
.depoimentos {
    padding: 100px 0;
    background: var(--bg-section);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.depoimento-card {
    background: var(--bg-card);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.depoimento-card:hover {
    border-color: var(--brand-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 1rem;
    margin-bottom: 14px;
}

.depoimento-card>p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.depoente {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depoente-avatar {
    width: 44px;
    height: 44px;
    background: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.depoente strong {
    display: block;
    font-size: 0.95rem;
}

.depoente small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ══ FOOTER ══════════════════════════════════ */
.footer {
    background: var(--brand-dark);
    border-top: 3px solid var(--brand-green);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 14px 0 20px;
    max-width: 260px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--brand-green);
    color: white;
}

.footer-col h4 {
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

/* ══ MODAL ════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    z-index: 1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.modal-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-body {
    padding: 28px;
}

.modal-badge {
    display: inline-block;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    color: white;
    margin-bottom: 12px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-pricing {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.modal-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-green);
}

.modal-price-old {
    font-size: 1rem;
    color: var(--text-faint);
    text-decoration: line-through;
}

.btn-add-modal {
    width: 100%;
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 18px;
    border-radius: var(--radius);
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-modal:hover {
    background: var(--brand-green2);
    box-shadow: 0 10px 28px rgba(74, 124, 63, 0.35);
}

/* ══ TOAST ════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--brand-dark);
    border-left: 4px solid var(--brand-green);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 500;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 360px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ══ CHECKOUT ════════════════════════════════ */
.checkout-page {
    min-height: 100vh;
    padding: 100px 0 60px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

.checkout-form-section {
    background: var(--bg-card);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 32px;
}

.checkout-form-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 6px;
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #d0d0d0;
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 63, 0.1);
}

.form-group input::placeholder {
    color: #aaa;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-summary {
    background: var(--bg-card);
    border: 1px solid #e0e0e0;
    border-top: 3px solid var(--brand-green);
    border-radius: var(--radius);
    padding: 28px;
    position: sticky;
    top: 90px;
    box-shadow: var(--shadow-card);
}

.checkout-summary h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.summary-items {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: var(--bg-section);
    border: 1px solid #ebebeb;
    border-radius: var(--radius);
}

.summary-item-img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.summary-item-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.summary-item-qty {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.summary-item-price {
    font-weight: 700;
    color: var(--brand-green);
    font-size: 0.9rem;
}

.summary-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 16px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--brand-green);
    padding-top: 12px;
    border-top: 2px solid #e0e0e0;
}

.cupom-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.cupom-input {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid #d0d0d0;
    border-radius: var(--radius);
    padding: 10px 14px;
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.cupom-input:focus {
    border-color: var(--brand-green);
}

.btn-cupom {
    background: #f5f5f5;
    color: var(--text-body);
    border: 1px solid #d0d0d0;
    border-radius: var(--radius);
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-cupom:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: white;
}

.btn-finalizar {
    width: 100%;
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 18px;
    border-radius: var(--radius);
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-finalizar:hover {
    background: var(--brand-green2);
    box-shadow: 0 10px 28px rgba(74, 124, 63, 0.35);
}

.btn-finalizar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ══ PAGAMENTO PIX ════════════════════════════ */
.pix-page {
    min-height: 100vh;
    padding: 100px 0 60px;
}

.pix-container {
    max-width: 600px;
    margin: 0 auto;
}

.pix-card {
    background: var(--bg-card);
    border: 1px solid #e0e0e0;
    border-top: 3px solid var(--brand-green);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
    color: var(--text-dark);
}

.pix-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.pix-card h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pix-card>p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pix-valor {
    background: rgba(212, 160, 23, 0.1);
    border: 2px solid rgba(212, 160, 23, 0.4);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
}

.pix-valor-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pix-valor-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
}

.pix-qr-section {
    margin-bottom: 24px;
}

.pix-qr {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: var(--radius);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid rgba(212, 160, 23, 0.3);
}

.pix-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pix-chave-section {
    background: var(--choco-3);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
}

.pix-chave-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pix-chave-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pix-chave-value {
    flex: 1;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    word-break: break-all;
}

.btn-copiar {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--choco);
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-copiar:hover {
    transform: translateY(-2px);
}

.pix-instrucoes {
    text-align: left;
    background: var(--choco-3);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}

.pix-instrucoes h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.pix-instrucoes ol {
    list-style: none;
    counter-reset: steps;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pix-instrucoes li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: var(--text-muted);
    counter-increment: steps;
}

.pix-instrucoes li::before {
    content: counter(steps);
    width: 22px;
    height: 22px;
    background: rgba(233, 30, 140, 0.2);
    color: var(--rose-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.pix-pedido-info {
    background: var(--choco-3);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.pix-pedido-info h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pix-pedido-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
}

.timer-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.timer {
    color: var(--rose-light);
    font-weight: 700;
    font-size: 1rem;
}

.btn-confirmar {
    width: 100%;
    background: linear-gradient(135deg, #27ae60, #1e8449);
    color: white;
    border: none;
    padding: 18px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
}

.btn-confirmar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.3);
}

.pix-footer-note {
    font-size: 0.8rem;
    color: var(--text-faint);
}

/* ══ SUCESSO ══════════════════════════════════ */
.sucesso-page {
    min-height: 100vh;
    padding: 100px 0 60px;
}

.sucesso-container {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}

.sucesso-icon {
    font-size: 5rem;
    margin-bottom: 24px;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ══ ADMIN ════════════════════════════════════ */
.admin-page {
    min-height: 100vh;
    padding: 80px 0 40px;
}

.admin-login {
    max-width: 400px;
    margin: 100px auto;
    text-align: center;
}

.admin-login-card {
    background: var(--choco-2);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.admin-login-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.admin-header h1 {
    font-size: 1.6rem;
    font-weight: 800;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-aguardando {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.status-pago {
    background: rgba(39, 174, 96, 0.2);
    color: #68d391;
}

.status-enviado {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
}

.status-cancelado {
    background: rgba(231, 76, 60, 0.2);
    color: #f87171;
}

.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 12px 24px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}

.admin-tab.active {
    color: var(--rose-light);
    border-bottom-color: var(--rose);
}

.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
}

.pedidos-table {
    width: 100%;
    border-collapse: collapse;
}

.pedidos-table th,
.pedidos-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.88rem;
}

.pedidos-table th {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--choco-3);
}

.pedidos-table td {
    color: var(--text-muted);
}

.pedidos-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.config-form {
    max-width: 560px;
}

.section-divider {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 24px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.btn-salvar {
    background: linear-gradient(135deg, var(--rose), #c0166e);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 16px;
}

.btn-salvar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.4);
}

.btn-sair {
    background: var(--choco-3);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sair:hover {
    background: rgba(231, 76, 60, 0.15);
    color: var(--red);
    border-color: var(--red);
}

/* ══ RESPONSIVE ══════════════════════════════ */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 100px 24px 60px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid {
        grid-column: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 16px;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

/* ══ WHATSAPP FLUTUANTE ═══════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    transition: var(--transition);
}

.whatsapp-label {
    display: none;
    color: white;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 8px;
}

.whatsapp-float:hover {
    width: auto;
    padding: 0 20px 0 16px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
}

.whatsapp-float:hover .whatsapp-label {
    display: block;
}

@keyframes wppPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
    }
}

.whatsapp-float {
    animation: wppPulse 2.5s ease infinite;
}

/* ══ BARRA PROGRESSO FRETE GRÁTIS ════════════ */
.frete-progress-wrap {
    padding: 12px 16px;
    background: rgba(39, 174, 96, 0.08);
    border-bottom: 1px solid rgba(39, 174, 96, 0.2);
}

.frete-progress-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.frete-progress-text strong {
    color: #68d391;
}

.frete-atingido {
    color: #68d391 !important;
    font-weight: 700;
    text-align: center;
}

.frete-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
}

.frete-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #68d391);
    border-radius: 50px;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══ SELOS SEGURANÇA CHECKOUT ════════════════ */
.security-seals {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
    margin-bottom: 6px;
}

.seal-item {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.25);
    color: #68d391;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.security-note {
    font-size: 0.72rem;
    color: var(--text-faint);
    text-align: center;
    margin-top: 6px;
}

/* ══ ESTOQUE URGENTE NOS CARDS ═══════════════ */
.produto-estoque-urgente {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    animation: urgPulse 1.5s ease infinite;
    letter-spacing: 0.3px;
}

@keyframes urgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* ══ BOTÃO COMPRAR AGORA ══════════════════════ */
.btn-buy-now {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--choco);
    border: none;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 160, 23, 0.4);
}

/* ══ BOTÃO WHATSAPP PEDIDO ═══════════════════ */
.btn-wpp-pedido {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    margin-bottom: 12px;
    margin-top: 4px;
}

.btn-wpp-pedido:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

/* ══ AJUSTE AÇÕES DO PRODUTO ═════════════════ */
.produto-actions {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-float:hover {
        width: 54px;
        padding: 0;
        border-radius: 50%;
    }

    .whatsapp-float:hover .whatsapp-label {
        display: none;
    }

    .btn-buy-now {
        font-size: 0.78rem;
        padding: 10px 10px;
    }
}

/* ══ BARRA DE URG\u00caNCIA TOPO ════════════════════ */
.urgency-bar {
    background: var(--brand-dark);
    color: white;
    text-align: center;
    padding: 10px 48px;
    font-size: 0.82rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    border-bottom: 2px solid var(--brand-green);
}

.urgency-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.urgency-pulse {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseGreen 1.2s ease infinite;
}

@keyframes pulseGreen {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }
}

.urgency-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: auto;
    position: absolute;
    right: 16px;
    transition: var(--transition);
}

.urgency-close:hover {
    color: white;
}

/* Deslocar header para baixo quando barra urgência existe */
body:has(.urgency-bar) .header {
    top: 38px;
}

/* ══ NOTIFICA\u00c7\u00c3O COMPRA AO VIVO ════════════════ */
.live-purchase {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--brand-green);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    z-index: 9997;
    max-width: 300px;
    transform: translateX(-360px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.live-purchase.show {
    transform: translateX(0);
}

.live-purchase-img {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.live-purchase-text {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.4;
}

.live-purchase-text strong {
    color: var(--brand-green);
    font-size: 0.9rem;
}

.live-purchase-text small {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-top: 4px;
}

/* ══ EXIT INTENT POPUP ═══════════════════════ */
.exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.exit-box {
    background: white;
    border-radius: var(--radius);
    padding: 48px 40px 36px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exit-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    transition: var(--transition);
}

.exit-close:hover {
    background: var(--red);
    color: white;
}

.exit-emoji {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.exit-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.exit-sub {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.exit-cupom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #f8fdf8;
    border: 2px dashed var(--brand-green);
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-bottom: 14px;
}

.exit-cupom-code {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-green);
    letter-spacing: 4px;
}

.exit-cupom-btn {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.exit-cupom-btn:hover {
    background: var(--brand-green2);
}

.exit-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.exit-note strong {
    color: var(--red);
}

.exit-cta {
    display: block;
    background: var(--brand-green);
    color: white;
    padding: 16px;
    border-radius: var(--radius);
    font-weight: 900;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.exit-cta:hover {
    background: var(--brand-green2);
}

.exit-reject {
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.exit-reject:hover {
    color: var(--red);
    text-decoration: underline;
}

/* ══ BARRA PROVA SOCIAL ══════════════════════ */
.social-proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 24px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.sp-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-item strong {
    color: #4ade80;
}

.sp-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseGreen 1.2s ease infinite;
    flex-shrink: 0;
}

/* ══ URG\u00caNCIA ENVIO HERO ════════════════════════ */
.hero-shipping-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 20px;
    animation: fadeUp 0.8s ease 0.6s both;
}

.hero-shipping-urgency strong {
    color: #4ade80;
}

.ship-icon {
    font-size: 1.3rem;
}

/* ══ RIBBON "MAIS VENDIDO" ═══════════════════ */
.produto-card.mais-vendido::before {
    content: '⭐ MAIS VENDIDO';
    position: absolute;
    top: 20px;
    left: -8px;
    background: linear-gradient(135deg, var(--easter-gold), #e8a800);
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 14px 4px 12px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}

@media (max-width: 640px) {
    .urgency-bar {
        font-size: 0.72rem;
        padding: 8px 40px;
    }

    .live-purchase {
        max-width: 260px;
        bottom: 90px;
    }

    .exit-box {
        padding: 36px 24px 28px;
    }

    .exit-title {
        font-size: 1.4rem;
    }

    .social-proof-bar {
        gap: 14px;
        font-size: 0.78rem;
    }
}