/* ============================================================
   VARIÁVEIS E RESET
   ============================================================ */
:root {
    --text: #1a1a1a;
    --text-light: #666;
    --bg: #fff;
    --card-bg: #f9f9f9;
    --border: #e5e5e5;
    --gold: #b8860b;
    --gold-dark: #9a7209;
    --gold-light: #d4a74a;
    --rose: #e8c4b8;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --transition: 0.3s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 70px;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-decoration: none;
    color: var(--gold-dark);
    transition: var(--transition);
}
.logo a:hover { color: var(--gold); }

.nav-menu { display: flex; gap: 32px; }
.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-menu a:hover::after { width: 100%; }

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

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 8px;
    color: var(--text);
    transition: var(--transition);
}
.btn-icon:hover { color: var(--gold); }
.btn-icon svg { width: 22px; height: 25px; }

.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-carrossel {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 70px);
}
.carrossel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: pan-y;
}
.carrossel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.carrossel-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.carrossel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.02) 30%);
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    max-width: 520px;
}
.slide-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
}
.slide-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.slide-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.btn-hero {
    display: inline-block;
    padding: 14px 36px;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-hero:hover { background: var(--gold); color: #fff; }
.carrossel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s, transform 0.3s;
}
.carrossel-arrow:hover { color: #fff; transform: translateY(-50%) scale(1.1); }
.carrossel-arrow-left { left: 16px; }
.carrossel-arrow-right { right: 16px; }
.carrossel-arrow svg { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.carrossel-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(2px);
}
.indicator.active { background: #fff; width: 28px; border-radius: 5px; }

.container { max-width: 1300px; margin: 0 auto; padding: 60px 40px; }
.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text);
}
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
#colecaoCopa, #saojoao { scroll-margin-top: 80px; }

.produto-card { cursor: pointer; transition: var(--transition); }
.produto-card:hover .card-img { transform: scale(1.02); }
.card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.card-body { padding: 16px 0; text-align: center; }
.card-body .nome {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--text);
}
.card-body .preco { font-size: 1rem; font-weight: 600; color: var(--text); }

.selo-embreve, .selo-indisponivel, .selo-esgotado {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.selo-embreve { background: var(--gold); }
.selo-indisponivel { background: #999; }
.selo-esgotado { background: var(--danger, #d4857c); }

/* ============================================================
   MODAL DEFINITIVO - X FLUTUANTE, CONTEÚDO VISÍVEL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-dialog {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s;
}
.modal-overlay.active .modal-dialog { transform: translateY(0); }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.modal-close:hover { background: rgba(0, 0, 0, 0.8); }

.modal-body {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.modal-gallery {
    flex: 1.2;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}
.gallery-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.main-image {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 60vh;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}
.gallery-arrow:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.05);
}
.gallery-arrow.left { left: 12px; }
.gallery-arrow.right { right: 12px; }
.thumbnails {
    display: flex;
    gap: 8px;
    padding: 12px;
    flex-wrap: wrap;
    justify-content: center;
    background: #f5f5f5;
    flex-shrink: 0;
}
.thumb {
    width: 55px;
    height: 55px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    border-radius: 8px;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.thumb.active { border-color: var(--gold); }

.modal-info {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background: #fff;
    gap: 12px;
    overflow-y: auto;
}

.modal-category {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}
.modal-nome {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}
/* PREÇO MAIS VISÍVEL - COR MAIS ESCURA E FORTE */
.modal-preco {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #8B6914;  /* tom de ouro mais escuro e vibrante */
    text-shadow: 0 0 1px rgba(0,0,0,0.1);
}
.modal-opcoes { margin-bottom: 16px; }
.opcao-grupo { margin-bottom: 14px; }
.label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
}
.tamanho-opcoes, .cor-opcoes { display: flex; gap: 8px; flex-wrap: wrap; }
.tam-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
    min-width: 40px;
    text-align: center;
    border-radius: 8px;
}
.tam-btn:hover, .tam-btn.selecionado { border-color: var(--text); background: var(--text); color: #fff; }
.cor-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.cor-btn.selecionado { border-color: var(--text); border-width: 2px; }
.cor-nome { font-size: 0.65rem; text-align: center; margin-top: 4px; }
.quantidade-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.qtd-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.qtd-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}
.qtd-btn:hover { background: var(--card-bg); }
.qtd-num { width: 40px; text-align: center; font-weight: 600; }
.btn-add-sacola {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: #fff;
    border: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
    border-radius: 50px;
}
.btn-add-sacola:hover { background: var(--gold-dark); transform: translateY(-2px); }
.modal-descricao {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

/* ============================================================
   OVERLAY E SACOLA (mantido original)
   ============================================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.overlay.active { opacity: 1; pointer-events: auto; }
.sacola-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 92vw;
    height: 100vh;
    height: 100dvh;
    background: #fefcf9;
    z-index: 300;
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid #efe3d4;
    overflow-y: auto;
}
.sacola-offcanvas.active { transform: translateX(0); }
.sacola-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 5;
}
.sacola-header h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; }
.btn-fechar { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-light); transition: var(--transition); }
.btn-fechar:hover { color: var(--text); }
.sacola-itens { padding: 20px 24px; background: #fcf7f2; }
.sacola-vazio { text-align: center; padding: 60px 20px; color: #b7a694; font-size: 1.1rem; }
.item-sacola {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #efe3d4;
    margin-bottom: 12px;
    align-items: center;
}
.item-img { width: 56px; height: 56px; border-radius: 12px; overflow: hidden; flex-shrink: 0; background: #f5efe8; }
.item-img img { width: 100%; height: 100%; object-fit: cover; }
.item-info { flex: 1; min-width: 0; }
.item-nome { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.item-variacao { font-size: 0.8rem; color: var(--text-light); }
.item-preco { font-weight: 700; color: var(--gold-dark); margin-top: 2px; font-size: 0.9rem; }
.item-qtd-control { display: flex; align-items: center; gap: 6px; }
.item-qtd-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #d9cfbf;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    color: var(--text);
}
.item-qtd-btn:hover { border-color: var(--gold); background: #fef7e6; }
.sacola-footer { border-top: 1px solid #efe3d4; padding: 20px 24px; background: #fff; }
.sacola-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.3rem; margin-bottom: 16px; }
.sacola-total .valor { color: var(--gold-dark); }
.sacola-footer input, .sacola-footer textarea, .sacola-footer select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #d9cfbf;
    border-radius: 14px;
    margin-bottom: 12px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background: #fdfaf6;
    transition: 0.2s;
}
.sacola-footer input:focus, .sacola-footer textarea:focus, .sacola-footer select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,168,78,0.1);
}
#inputObs { resize: none; }
.btn-finalizar {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #cfb157, var(--gold-dark));
    color: #fff;
    border: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 8px;
    border-radius: 50px;
}
.btn-finalizar:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-limpar {
    width: 100%;
    padding: 12px;
    background: none;
    border: 1.5px solid #d9cfbf;
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    color: var(--text-light);
    border-radius: 40px;
    margin-top: 4px;
}
.btn-limpar:hover { border-color: var(--danger); color: var(--danger); background: #fff5f5; }

.entrega-info { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.entrega-badge, .frete-badge { font-size: 0.72rem; padding: 6px 12px; border-radius: 20px; font-weight: 500; white-space: nowrap; }
.entrega-badge { background: #e8f5e9; color: #2e7d32; }
.frete-badge { background: #fff3e0; color: #e65100; }

.pagamento-container { margin-bottom: 12px; }
.select-pagamento {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #d9cfbf;
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.9rem;
    background: #fdfaf6;
    color: var(--text);
    cursor: pointer;
    transition: 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a6e64' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.select-pagamento:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,78,0.1); }

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #1a1a1a;
    color: #fff;
    padding: 14px 28px;
    font-size: 0.85rem;
    z-index: 500;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
    border-radius: 50px;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============================================================
   FOOTER (centralizado, igual ao segundo código)
   ============================================================ */
.footer { background: #faf7f2; border-top: 1px solid #e8ddd0; padding: 60px 40px 0; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.footer-col { display: flex; flex-direction: column; }
.footer-col:first-child { align-items: center; text-align: center; }
.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.footer-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 280px;
    text-align: center;
    margin: 0 auto;
}
.footer-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-align: center;
}
.footer-links-col { text-align: center; }
.footer-links-col a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 4px 0;
    transition: var(--transition);
    display: inline-block;
    margin: 0 4px;
}
.footer-links-col a:hover { color: var(--gold); }
.footer-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid #25D366;
    color: var(--text);
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 16px;
    transition: 0.3s;
    width: fit-content;
    min-width: 240px;
    margin: 0 auto 16px;
}
.footer-whatsapp:hover { background: #25D366; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37,211,102,0.25); }
.footer-whatsapp:hover .whatsapp-icon { background: #fff; color: #25D366; }
.footer-whatsapp:hover .whatsapp-text small { color: rgba(255,255,255,0.8); }
.whatsapp-icon {
    width: 44px;
    height: 44px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}
.whatsapp-text { display: flex; flex-direction: column; line-height: 1.3; }
.whatsapp-text small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); transition: 0.3s; }
.whatsapp-text { font-weight: 600; font-size: 0.9rem; }
.footer-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid #e1306c;
    color: var(--text);
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 16px;
    transition: 0.3s;
    width: fit-content;
    min-width: 240px;
    margin: 0 auto 16px;
}
.footer-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(225,48,108,0.25); }
.footer-instagram:hover .instagram-icon { background: #fff; color: #e1306c; }
.footer-instagram:hover .instagram-text small { color: rgba(255,255,255,0.8); }
.instagram-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}
.instagram-text { display: flex; flex-direction: column; line-height: 1.3; }
.instagram-text small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); transition: 0.3s; }
.instagram-text { font-weight: 600; font-size: 0.9rem; }
.footer-email {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    display: block;
    margin-top: 8px;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid #e8ddd0;
    margin-top: 48px;
    text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: #b0a090; letter-spacing: 0.3px; }

/* ============================================================
   RESPONSIVO MOBILE (garante conteúdo visível)
   ============================================================ */
@media (max-width: 768px) {
    .header { height: 60px; }
    .header-container { padding: 0 20px; }
    .nav-menu { display: none; }
    .carrossel-arrow { display: none; }
    .hero-carrossel { height: 460px; }
    .slide-content { padding: 20px 28px; text-align: center; bottom: 30px; left: 50%; transform: translateX(-50%); width: 100%; }
    .slide-title { font-size: 1.6rem; }
    .slide-desc { font-size: 0.8rem; }
    .btn-hero { padding: 10px 28px; font-size: 0.7rem; }
    .container { padding: 40px 20px; }
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .modal-dialog {
        flex-direction: column;
        width: 95%;
    }
    .modal-body {
        flex-direction: column;
    }
    .modal-gallery {
        width: 100%;
        flex: none;
    }
    .main-image img {
        max-height: 50vh;
    }
    .modal-info {
        padding: 20px;
        gap: 8px;
        overflow-y: auto;
    }
    .modal-close {
        background: transparent;
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    .modal-close:hover { background: transparent; }
    .modal-nome { font-size: 1.3rem; }
    .modal-preco { font-size: 1.3rem; margin-bottom: 12px; }
    .thumbnails { padding: 8px; gap: 6px; }
    .thumb { width: 45px; height: 45px; }
    .gallery-arrow { width: 32px; height: 32px; font-size: 1rem; }
    .gallery-arrow.left { left: 8px; }
    .gallery-arrow.right { right: 8px; }
    .sacola-offcanvas { width: 100vw; max-width: 100vw; }
    .footer { padding: 40px 24px 0; }
    .footer-container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-desc { max-width: 100%; margin: 0 auto; }
    .footer-whatsapp, .footer-instagram { margin: 0 auto 16px; width: 100%; max-width: 260px; }
    .footer-links-col a { display: inline-block; margin: 0 6px; }
    .footer-email { padding-left: 0; text-align: center; }
    .footer-bottom { margin-top: 32px; }
    #colecaoCopa, #saojoao { scroll-margin-top: 60px; }
    .tam-btn { padding: 6px 12px; font-size: 0.75rem; }
    .cor-btn { width: 30px; height: 30px; }
    .section-title { font-size: 1.6rem; margin-bottom: 24px; }
    .btn-add-sacola { padding: 12px; font-size: 0.8rem; }
}
@media (max-width: 480px) {
    .produtos-grid { gap: 12px; }
    .container { padding: 30px 12px; }
    .thumb { width: 40px; height: 40px; }
    .modal-nome { font-size: 1.2rem; }
    .modal-preco { font-size: 1.2rem; }
    .modal-info { padding: 16px; }
    .tam-btn { padding: 5px 10px; font-size: 0.7rem; min-width: 35px; }
    .cor-btn { width: 28px; height: 28px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .modal-gallery { flex: 1; }
    .modal-info { flex: 1; padding: 20px; }
    .modal-nome { font-size: 1.4rem; }
    .thumb { width: 45px; height: 45px; }
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: rgba(37, 211, 102, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}
.modal-overlay.active ~ .whatsapp-float,
.overlay.active ~ .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    font-family: var(--font-sans);
    letter-spacing: 0.3px;
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float.pulse {
    animation: pulse-whatsapp 2s infinite;
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}