:root {
    --preto: #14141a;
    --preto-2: #1e1e26;
    --amarelo: #f5c518;
    --amarelo-escuro: #d9ad0e;
    --cinza-texto: #6b6b76;
    --cinza-claro: #f4f4f6;
    --borda: #e6e6ea;
    --verde-desconto: #1c8a4b;
    --radius: 12px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    color: var(--preto);
    background: #fff;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HEADER ---------- */
.site-header {
    background: var(--preto);
    padding: 16px 0;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand img { height: 38px; width: auto; }
.brand span {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.3px;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.customer-greeting {
    color: #fff;
    font-size: 13.5px;
}
.link-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    opacity: 0.85;
    padding: 0;
}
.link-button:hover { opacity: 1; text-decoration: underline; }
.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}
.whatsapp-button:hover { background: #1ebe5a; }
.whatsapp-button svg { width: 13px; height: 13px; flex-shrink: 0; }
.cart-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--amarelo);
    color: var(--preto);
    border: none;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}
.cart-button .cart-count {
    background: var(--preto);
    color: var(--amarelo);
    border-radius: 999px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 0 5px;
}

/* ---------- BANNER ROTATIVO ---------- */
.banner {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 1;
    max-height: 340px;
    overflow: hidden;
    background: #0c0c10;
}
@media (max-width: 640px) {
    .banner { aspect-ratio: 16 / 9; }
}
.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.banner-slide.active { opacity: 1; }
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.banner-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}
.banner-dots span.active { background: var(--amarelo); }

/* ---------- PRODUTOS ---------- */
.section-title {
    font-size: 26px;
    font-weight: 800;
    margin: 40px 0 4px;
}
.section-subtitle {
    color: var(--cinza-texto);
    margin-bottom: 24px;
    font-size: 15px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
}
.product-card {
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.product-card .thumb {
    background: var(--cinza-claro);
    border-radius: 8px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 14px;
}
.product-card .thumb img { height: 100%; width: 100%; object-fit: contain; }
.product-card h3 {
    font-size: 15px;
    margin: 0 0 8px;
    min-height: 40px;
}
.product-card .desc {
    font-size: 13px;
    color: var(--cinza-texto);
    margin-bottom: 12px;
    flex-grow: 1;
}
.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.price-old {
    text-decoration: line-through;
    color: var(--cinza-texto);
    font-size: 13px;
}
.price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--preto);
}
.price-badge {
    background: #e7f7ee;
    color: var(--verde-desconto);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}
.qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--borda);
    border-radius: 8px;
    overflow: hidden;
}
.qty-stepper button {
    background: var(--cinza-claro);
    border: none;
    width: 30px;
    height: 32px;
    font-size: 16px;
    font-weight: 700;
}
.qty-stepper input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--borda);
    border-right: 1px solid var(--borda);
    height: 32px;
    font-size: 14px;
}
.btn-add {
    width: 100%;
    background: var(--preto);
    color: #fff;
    border: none;
    padding: 11px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}
.btn-add:hover { background: #000; }

/* ---------- FOOTER + ÍCONE ADMIN DISCRETO ---------- */
.site-footer {
    background: var(--preto);
    padding: 36px 0;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}
@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-col { position: relative; }
.footer-legal {
    font-size: 11.5px;
    color: #8b8b94;
    line-height: 1.5;
    margin-top: 10px;
}
.footer-logo { height: 40px; width: auto; margin-bottom: 12px; }
.site-footer p {
    color: #aaaab2;
    font-size: 13px;
    margin: 4px 0;
}
.admin-trigger {
    width: 22px;
    height: 22px;
    opacity: 0.35;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    color: #aaaab2;
    margin-top: 14px;
}
.admin-trigger:hover { opacity: 0.85; }
.admin-trigger svg { width: 16px; height: 16px; }

/* ---------- MODAIS (login, carrinho) ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,14,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: #fff;
    border-radius: var(--radius);
    width: 100%;
    max-width: 380px;
    padding: 28px;
    position: relative;
}
.modal-box.wide { max-width: 480px; }
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--cinza-texto);
}
.modal-box h2 {
    font-size: 19px;
    margin: 0 0 4px;
}
.modal-box .modal-sub {
    color: var(--cinza-texto);
    font-size: 13px;
    margin-bottom: 20px;
}
.field { margin-bottom: 14px; }
.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}
.field input,
.field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--borda);
    border-radius: 8px;
    font-size: 14px;
}
.field textarea { resize: vertical; min-height: 70px; }
.btn-primary {
    width: 100%;
    background: var(--amarelo);
    color: var(--preto);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
}
.form-error {
    background: #fdeaea;
    color: #b42318;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 14px;
}

/* Carrinho lateral */
.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--borda);
}
.cart-item .thumb {
    width: 56px;
    height: 56px;
    background: var(--cinza-claro);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cart-item .thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-info { flex-grow: 1; }
.cart-item-info h4 { font-size: 13.5px; margin: 0 0 4px; }
.cart-item-remove {
    background: none;
    border: none;
    color: #b42318;
    font-size: 12px;
    padding: 0;
    margin-top: 4px;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 17px;
    margin: 18px 0;
}
.cart-empty {
    color: var(--cinza-texto);
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
}

/* ---------- BOTÃO SECUNDÁRIO / LINKS DE MODAL ---------- */
.btn-secondary {
    width: 100%;
    background: none;
    color: var(--preto);
    border: 1px solid var(--borda);
    padding: 11px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13.5px;
    margin-top: 8px;
}
.btn-link {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 8px;
}
.modal-switch {
    text-align: center;
    font-size: 13px;
    color: var(--cinza-texto);
    margin: 14px 0 0;
}
.modal-switch a { color: var(--amarelo-escuro); font-weight: 700; }
.address-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ---------- PÁGINAS DE FRETE / PAGAMENTO ---------- */
.checkout-page { max-width: 620px; padding-top: 30px; padding-bottom: 60px; }
.checkout-steps {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.checkout-steps .step {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--cinza-texto);
    background: var(--cinza-claro);
    padding: 6px 12px;
    border-radius: 999px;
}
.checkout-steps .step.active { background: var(--amarelo); color: var(--preto); }
.checkout-steps .step.done { background: #e7f7ee; color: var(--verde-desconto); }
.checkout-card {
    border: 1px solid var(--borda);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 16px;
    background: #fff;
}
.checkout-card h3 { margin: 0 0 12px; font-size: 15px; }
.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 6px 0;
}
.addr-line { font-size: 14px; line-height: 1.6; color: var(--preto); margin: 0; }
.free-tag { color: var(--verde-desconto); font-weight: 800; margin-left: 6px; }
.shipping-highlight { background: #fffdf3; border-color: var(--amarelo-escuro); }
.shipping-eta { border-top: 1px dashed var(--borda); margin-top: 10px; padding-top: 10px; }
.shipping-eta-dates { font-weight: 500; color: #6b6b76; font-size: 12.5px; }
.totals-card .cart-total-row { margin: 4px 0 0; padding-top: 10px; border-top: 1px solid var(--borda); }

.pix-card { text-align: center; }
.qrcode-box { display: flex; justify-content: center; margin-bottom: 16px; }
.pix-hint { font-size: 13.5px; color: var(--cinza-texto); margin-bottom: 14px; }
.pix-copy-code {
    width: 100%;
    height: 70px;
    resize: none;
    font-size: 12px;
    padding: 10px 12px;
    border: 1px solid var(--borda);
    border-radius: 8px;
    margin-bottom: 12px;
    color: var(--cinza-texto);
}
.pix-status { margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--amarelo-escuro); }
.payment-ok { text-align: center; }

/* ---------- BARRA DE CONFIANÇA ---------- */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--borda);
}
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 22px 0;
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--amarelo-escuro);
    flex-shrink: 0;
    margin-top: 1px;
}
.trust-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.trust-item span { font-size: 12.5px; color: var(--cinza-texto); }
@media (max-width: 900px) {
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .trust-bar-grid { grid-template-columns: 1fr; }
}

/* ---------- HERO DIVIDIDO (institucional) ---------- */
.hero-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
}
@media (max-width: 860px) {
    .hero-split { grid-template-columns: 1fr; }
}
.hero-split-dark {
    background: var(--preto);
    color: #fff;
    padding: 56px 40px;
}
.hero-eyebrow {
    display: block;
    color: var(--amarelo);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero-heading {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 18px;
}
.hero-heading span { color: var(--amarelo); }
.hero-text {
    color: #c7c7cf;
    font-size: 15px;
    line-height: 1.6;
    max-width: 440px;
    margin: 0 0 28px;
}
.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-btn-primary,
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
}
.hero-btn-primary { background: var(--amarelo); color: var(--preto); border: none; }
.hero-btn-primary:hover { background: #ffdd5c; }
.hero-btn-outline { background: none; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.hero-btn-outline:hover { border-color: #fff; }
.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 22px;
}
.hero-stats strong { display: block; font-size: 19px; font-weight: 800; }
.hero-stats span { font-size: 11px; color: #9a9aa4; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 24px;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 10px 16px;
    flex: 1 1 150px;
}
.hero-badge-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.hero-badge strong { display: block; font-size: 15px; font-weight: 800; color: #fff; }
.hero-badge span { font-size: 11px; color: #b6b6c0; text-transform: uppercase; letter-spacing: 0.4px; }
@media (max-width: 480px) {
    .hero-badges { gap: 10px; }
    .hero-badge { padding: 9px 12px; }
}
.hero-split-light {
    background: #fff;
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--borda);
}
.hero-split-light p {
    font-size: 14.5px;
    color: var(--preto);
    line-height: 1.7;
    margin: 0 0 14px;
}
.hero-light-tags {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--borda);
}
.hero-light-tags span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--amarelo-escuro);
}
.hero-light-tags svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- LOCALIZAR AQUI (mapa) ---------- */
.locate-section { padding: 50px 0 10px; }
.locate-title { font-size: 24px; font-weight: 800; margin: 0 0 20px; }
.locate-map-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cinza-claro);
}
.locate-map {
    width: 100%;
    height: 520px;
    border: 0;
    display: block;
}
.locate-card {
    position: absolute;
    top: 24px;
    left: 24px;
    max-width: 320px;
    background: var(--amarelo);
    color: var(--preto);
    padding: 22px 24px;
    border-radius: 10px;
}
.locate-card-tag {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.75;
}
.locate-card h3 { font-size: 19px; font-weight: 900; line-height: 1.25; margin: 0 0 12px; }
.locate-card p { font-size: 13.5px; line-height: 1.6; margin: 0 0 14px; }
.locate-route-link { font-weight: 800; font-size: 13.5px; text-decoration: underline; }
@media (max-width: 640px) {
    .locate-map { height: 380px; }
    .locate-card { position: static; max-width: none; margin-top: 14px; }
}

/* ---------- RODAPÉ EM COLUNAS ---------- */
.site-footer-new { background: var(--preto); padding: 44px 0 0; margin-top: 40px; }
.footer-columns {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
}
@media (max-width: 780px) {
    .footer-columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
    .footer-columns { grid-template-columns: 1fr; }
}
.footer-col-brand { position: relative; }
.footer-col-brand p { color: #aaaab2; font-size: 13px; line-height: 1.5; margin: 0 0 14px; }
.footer-col-title {
    display: block;
    color: var(--amarelo);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-col a,
.footer-col p {
    display: block;
    color: #cfcfd6;
    font-size: 13px;
    margin: 0 0 10px;
}
.footer-col a:hover { color: #fff; text-decoration: underline; }
.whatsapp-footer-button {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    background: #25D366;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12.5px;
    margin: 2px 0 12px;
    width: fit-content;
}
.whatsapp-footer-button:hover { background: #1ebe5a; text-decoration: none !important; }
.whatsapp-footer-button svg { width: 12px; height: 12px; flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0 24px;
}
.footer-bottom p { color: #aaaab2; font-size: 12px; margin: 0 0 6px; }
.footer-bottom .footer-legal { color: #7d7d86; font-size: 11.5px; line-height: 1.5; }