/* ============================================================
   VITAE GOLD — style.css
   ============================================================ */

/* === Variables === */
:root {
    --green:      #25a244;
    --whatsapp:   #25d366;
    --dark:       #1a1a1a;
    --gold:       #d4a017;
    --bg:         #f5f5f5;
    --white:      #ffffff;
    --text:       #333333;
    --border:     #e0e0e0;
    --font-head:  'Montserrat', sans-serif;
    --font-body:  'Inter', sans-serif;
    --radius:     8px;
    --shadow:     0 2px 10px rgba(0,0,0,0.08);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.5; overflow-x: clip; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
noscript { display: block; font-size: 0; line-height: 0; }

/* ============================================================
   HEADER
   ============================================================ */

#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.35); }

/* Top bar — frete grátis */
.header__top {
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 7px 16px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: max-height .3s, padding .3s, opacity .2s;
    overflow: hidden;
    max-height: 60px;
}
.header__top svg { flex-shrink: 0; }

/* Contact bar */
.header__contacts {
    background: var(--dark);
    color: var(--white);
    padding: 6px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    flex-wrap: wrap;
    transition: max-height .3s, padding .3s, opacity .2s;
    overflow: hidden;
    max-height: 60px;
}
.header__contacts-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.header__contacts a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: opacity .2s;
}
.header__contacts a:hover { opacity: .75; }

/* Barra principal: logo + nav + hamburguer */
.header__main {
    background: var(--dark);
    display: flex;
    align-items: center;
    padding: 0 20px;
    min-height: 60px;
    gap: 12px;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo img { height: 48px; width: auto; display: block; }

/* Nav desktop */
.header__nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}
.header__nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 0;
}
.header__nav-desktop a {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 20px 10px;
    display: block;
    position: relative;
    transition: color .2s;
    white-space: nowrap;
}
.header__nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 10px; right: 10px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .2s;
}
.header__nav-desktop a:hover::after,
.header__nav-desktop a.active::after { transform: scaleX(1); }
.header__nav-desktop a.active { color: var(--gold); }

/* Hamburguer — oculto no desktop topo, visível no scroll e sempre no mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-left: auto;
    padding: 4px;
    border-radius: 4px;
    transition: background .2s;
}
.menu-toggle:hover { background: rgba(255,255,255,.1); }
.burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
    transform-origin: center;
}
/* X quando aberto */
.menu-toggle.open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer — dropdown do hamburguer */
.nav-drawer {
    background: var(--dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    border-top: 1px solid #2a2a2a;
}
.nav-drawer.open {
    max-height: 400px;
}
.nav-drawer ul { padding: 6px 0 10px; }
.nav-drawer a {
    display: block;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 13px 24px;
    border-left: 3px solid transparent;
    transition: background .2s, border-color .2s, color .2s;
}
.nav-drawer a:hover,
.nav-drawer a.active {
    background: rgba(255,255,255,.06);
    border-left-color: var(--gold);
    color: var(--gold);
}

/* Desktop scrollado: oculta top/contatos, mostra hamburguer */
#site-header.scrolled .header__top,
#site-header.scrolled .header__contacts {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}
#site-header.scrolled .header__nav-desktop { display: none; }
#site-header.scrolled .menu-toggle { display: flex; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px;
    font-size: 12px;
    color: #666;
}


.breadcrumb a { color: #666; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   WHATSAPP ALERT BANNER (product pages)
   ============================================================ */
.wpp-alert {
    background: var(--whatsapp);
    color: var(--white);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel { position: relative; background: var(--dark); }
.swiper-hero { width: 100%; }
.swiper-hero .swiper-slide img { width: 100%; height: auto; display: block; }
.swiper-hero .swiper-button-prev,
.swiper-hero .swiper-button-next {
    color: var(--white);
    background: rgba(0,0,0,.35);
    width: 40px; height: 40px;
    border-radius: 50%;
}
.swiper-hero .swiper-button-prev::after,
.swiper-hero .swiper-button-next::after { font-size: 16px; }
.swiper-hero .swiper-pagination-bullet-active { background: var(--white); }

/* ============================================================
   CATEGORY ICONS
   ============================================================ */
.category-icons {
    background: var(--white);
    padding: 28px 24px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.category-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-head);
    transition: color .2s;
}
.category-icon:hover { color: var(--green); }
.category-icon img { width: 52px; height: 52px; object-fit: contain; }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    text-align: center;
    padding: 36px 24px 8px;
}
.section-title h1,
.section-title h2 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}
.section-title p {
    color: #777;
    font-size: 13px;
    margin-top: 6px;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.produto-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}
.produto-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.13); }
.produto-card__inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
}

.produto-card__img {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    background: var(--white);
}
.produto-card__img img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}
.produto-card__name {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 0 12px 12px;
    color: var(--dark);
    flex: 1;
}
.produto-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--whatsapp);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 11px 8px;
    text-transform: uppercase;
    transition: background .2s;
}
.produto-card__btn:hover { background: #1da851; }
.produto-card__btn svg { flex-shrink: 0; }

/* ============================================================
   PRODUTOS CAROUSEL (destaque / mais vendidos)
   ============================================================ */
.carousel-section {
    padding: 0 24px 40px;
    position: relative;
}
.carousel-wrapper {
    position: relative;
}
.swiper-produtos { overflow: hidden; padding-bottom: 20px; }
.swiper-produtos .swiper-slide { height: auto; }
.swiper-produtos .produto-card { height: 100%; }

.swiper-produtos .swiper-scrollbar {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 12px;
}
.swiper-produtos .swiper-scrollbar-drag {
    background: var(--green);
    border-radius: 2px;
    cursor: grab;
}
.swiper-produtos .swiper-scrollbar-drag:active { cursor: grabbing; }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 48px);
    left: -24px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}
.carousel-nav .swiper-button-prev,
.carousel-nav .swiper-button-next {
    pointer-events: all;
    color: var(--dark);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    width: 36px; height: 36px;
    border-radius: 50%;
    position: static;
    transform: none;
    margin: 0;
}
.carousel-nav .swiper-button-prev::after,
.carousel-nav .swiper-button-next::after { font-size: 14px; }

/* ============================================================
   PROMO GRID (3 colunas)
   ============================================================ */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 8px 24px 40px;
}
.promo-grid__item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: block;
}
.promo-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.promo-grid__item:hover img { transform: scale(1.03); }

/* ============================================================
   ESSENCIAIS (grid 5 colunas)
   ============================================================ */
.essenciais-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 0 24px 48px;
}

/* ============================================================
   TODOS OS PRODUTOS / CATEGORIA — grid 4 colunas
   ============================================================ */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px;
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
    background: #c9a84c;
    text-align: center;
    padding: 48px 24px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.instagram-icon {
    opacity: 0.9;
    margin-bottom: 4px;
}
.instagram-section p { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--white); opacity: 0.85; margin: 0; }
.instagram-section a {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    transition: opacity .2s;
}
.instagram-section a:hover { opacity: .75; }

/* ============================================================
   PAGE HEADER (category / todos)
   ============================================================ */
.page-header {
    padding: 24px 24px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.page-header__desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 680px;
    padding-bottom: 16px;
    margin: 0;
}

/* ── Carrossel de temas em /produtos-naturais/ ──────────── */
.temas-section {
    padding: 20px 0 0;
    max-width: 1100px;
    margin: 0 auto;
}
.temas-section__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 24px;
    margin-bottom: 12px;
}
.temas-carousel-wrap {
    position: relative;
}
.temas-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 24px 14px;
}
.temas-carousel::-webkit-scrollbar { display: none; }
.tema-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 160px;
    background: var(--white);
    border: 1.5px solid #c3e6cb;
    border-top: 3px solid var(--green);
    border-radius: 10px;
    padding: 14px 16px;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s, border-color .15s;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.tema-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,.1);
    transform: translateY(-3px);
    border-color: var(--green);
}
.tema-card__nome {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}
.tema-card__cat {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
}
.tema-card__qtd {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    background: var(--green);
    border-radius: 50px;
    padding: 2px 8px;
    align-self: flex-start;
}
/* Scrollbar customizada visível */
.temas-scrollbar {
    position: relative;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 0 24px 20px;
    overflow: hidden;
}
.temas-scrollbar__thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--green);
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s;
    min-width: 40px;
}
.temas-scrollbar__thumb:hover { background: var(--green-dark, #2d8c4e); }

/* ── Hero da página de subcategoria ─────────────────────── */
.subcat-hero {
    background: linear-gradient(135deg, #f0faf4 0%, #e8f5e9 100%);
    border-bottom: 1px solid #c8e6c9;
    padding: 28px 24px 24px;
}
.subcat-hero__inner {
    max-width: 860px;
    margin: 0 auto;
}
.subcat-hero__top {
    margin-bottom: 10px;
}
.subcat-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 50px;
    padding: 4px 12px;
}
.subcat-hero__title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.2;
}
.subcat-hero__desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.65;
    margin: 0 0 18px;
    max-width: 640px;
}
.subcat-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.subcat-hero__meta > span {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.subcat-hero__meta > span i { color: var(--green); }
.subcat-hero__back {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .15s;
}
.subcat-hero__back:hover { gap: 10px; }
@media (max-width: 480px) {
    .subcat-hero__title { font-size: 22px; }
    .subcat-hero__desc  { font-size: 14px; }
    .subcat-hero__meta  { gap: 12px; }
}

/* ── Subcategorias na página de categoria ───────────────── */
.subcategorias-section {
    padding: 16px 0 4px;
    max-width: 1100px;
    margin: 0 auto;
}
.subcategorias-section__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 24px;
    margin-bottom: 10px;
}
.subcategorias-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 24px 12px;
}
.subcategorias-row::-webkit-scrollbar { display: none; }
.subcat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    background: var(--white);
    border: 1.5px solid #c3e6cb;
    border-radius: 50px;
    padding: 8px 16px;
    text-decoration: none;
    transition: background .15s, border-color .15s, box-shadow .15s, transform .15s;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.subcat-pill:hover {
    background: #f0faf4;
    border-color: var(--green);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    transform: translateY(-2px);
}
.subcat-pill__nome {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}
.subcat-pill__qtd {
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    background: var(--green);
    border-radius: 50px;
    padding: 2px 8px;
    line-height: 1.6;
    white-space: nowrap;
}

/* ============================================================
   PRODUTO DETAIL PAGE
   ============================================================ */
.produto-detail {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 24px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}
.produto-detail__img {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: sticky;
    top: 90px;
}
.produto-detail__img-wrap {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border-radius: 16px 16px 0 0;
    padding: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}
.produto-detail__img img {
    max-height: 460px;
    width: 100%;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.12));
    background-color: white;
    border-radius: 12px;
}
.produto-detail__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}
.produto-detail__info-top { display: flex; flex-direction: column; gap: 14px; }
.produto-detail__info-bottom { display: flex; flex-direction: column; gap: 12px; padding-top: 20px; }

.produto-detail__cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f9f3;
    color: var(--green);
    border: 1px solid #c3e6cb;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-head);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 5px 12px;
    width: fit-content;
}

.produto-detail__title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}
.produto-detail__subtitulo {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    border-left: 3px solid var(--gold);
    padding-left: 12px;
}

.produto-detail__promo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.produto-detail__promo-badge {
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}
.produto-detail__promo p {
    color: rgba(255,255,255,.8);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.produto-detail__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-wpp--grande {
    padding: 16px 24px !important;
    font-size: 15px !important;
    border-radius: 50px !important;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.35) !important;
}

/* Descrição dentro do card */
.produto-detail__descricao {
    border-top: 1px solid var(--border);
    padding-top: 18px;
}
.produto-detail__descricao h2 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #999;
    margin-bottom: 10px;
}
.produto-detail__descricao p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}
.produto-advertencias {
    font-size: 11px;
    color: #aaa;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    line-height: 1.6;
}
.produto-advertencias i { margin-right: 5px; }

/* Trust seals */
.trust-seals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 0 0 16px 16px;
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    margin: 0;
}
.trust-seal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    white-space: nowrap;
}
.trust-seal-icon {
    width: 30px;
    height: 30px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    flex-shrink: 0;
}

/* Discount banner */
.discount-banner {
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
}
.discount-badge {
    background: var(--white);
    color: var(--whatsapp);
    border-radius: 20px;
    padding: 3px 12px;
    font-weight: 700;
    white-space: nowrap;
}

/* CTA buttons */
.btn-wpp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--radius);
    padding: 16px 24px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    transition: background .2s;
}
.btn-wpp:hover { background: #1da851; }
.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 14px 24px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    transition: border-color .2s, color .2s;
}
.btn-call:hover { border-color: var(--dark); color: var(--dark); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 24px;
}
.depoimentos-header {
    text-align: center;
    margin-bottom: 32px;
}
.depoimentos-header h2 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.depoimentos-header p {
    font-size: 14px;
    color: #666;
}
.swiper-depoimentos {
    overflow: hidden;
    padding-bottom: 20px;
}
.swiper-depoimentos .swiper-scrollbar {
    position: relative;
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 12px;
}
.swiper-depoimentos .swiper-scrollbar-drag {
    background: var(--green);
    border-radius: 2px;
    cursor: grab;
}
.swiper-depoimentos .swiper-slide { height: auto; display: flex; }
.depoimento-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .2s;
}
.depoimento-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.depoimento-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.depoimento-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #1a7a35);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.depoimento-nome {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}
.depoimento-estrelas {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: 2px;
}
.depoimento-texto {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    flex: 1;
}
.depoimento-rodape {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}
.depoimento-verificado {
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.depoimento-data {
    font-size: 11px;
    color: #aaa;
}

@media (max-width: 600px) {
    .depoimentos-section { padding: 28px 16px; }
}

/* Payment methods (product detail) */
.pagamento-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 0 24px 24px;
    padding: 24px;
    text-align: center;
}
.pagamento-section h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}
.pagamento-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pagamento-badge {
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 7px;
}
.pagamento-badge i { color: var(--dark); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: var(--dark);
    color: #ccc;
    padding: 48px 24px 0;
    font-size: 13px;
}
.footer__logo {
    text-align: center;
    margin-bottom: 36px;
}
.footer__logo img { height: 56px; width: auto; margin: 0 auto; }

.footer__main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}
.footer__col h4 {
    color: var(--white);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.45;
}
.footer__col ul { display: flex; flex-direction: column; gap: 4px; }
.footer__col ul li a {
    color: #bbb;
    font-size: 14px;
    padding: 5px 0;
    display: block;
    transition: color .2s;
}
.footer__col ul li a:hover { color: var(--white); }
.footer__col p { margin-bottom: 8px; display: flex; align-items: center; gap: 7px; color: #bbb; font-size: 13px; }
.footer__col a { color: #bbb; transition: color .2s; }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 32px 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}
.footer__bottom h4 {
    color: var(--white);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0.5;
}
.footer__payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer__badge {
    background: #232323;
    border: 1px solid #383838;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #e5e5e5;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: border-color .2s, background .2s;
}
.footer__badge:hover {
    background: #2a2a2a;
    border-color: #555;
}
.footer__shipping-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__shipping-info p {
    color: #bbb;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
.footer__shipping-info p i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.footer__shipping-info strong { color: var(--white); }

.footer__legal {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
    color: #666;
}
.footer__legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal-links a { color: #666; transition: color .2s; }
.footer__legal-links a:hover { color: #aaa; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--dark);
    color: var(--white);
    padding: 16px 24px;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.cookie-banner__text { flex: 1; min-width: 260px; font-size: 13px; line-height: 1.5; }
.cookie-banner__text strong { display: block; margin-bottom: 4px; font-family: var(--font-head); }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; }

.cookie-btn {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    white-space: nowrap;
}
.cookie-btn:hover { opacity: .85; transform: translateY(-1px); }
.cookie-btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    color: var(--white);
}
.cookie-btn--accept {
    background: var(--whatsapp);
    border: none;
    color: var(--white);
}

#cookie-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,.6);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.cookie-modal__box {
    background: var(--white);
    color: var(--text);
    border-radius: 12px;
    padding: 28px;
    max-width: 460px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cookie-modal__box h3 {
    font-family: var(--font-head);
    font-size: 16px;
    color: var(--dark);
}
.cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.cookie-toggle-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.cookie-toggle-row > div { flex: 1; }
.cookie-toggle-row strong { display: block; font-size: 13px; margin-bottom: 2px; }
.cookie-toggle-row p { font-size: 12px; color: #666; margin: 0; }

.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle__track {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 24px;
    cursor: pointer;
    transition: background .2s;
}
.cookie-toggle__track::before {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    left: 3px; top: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: transform .2s;
}
.cookie-toggle input:checked + .cookie-toggle__track { background: var(--green); }
.cookie-toggle input:checked + .cookie-toggle__track::before { transform: translateX(20px); }
.cookie-toggle--disabled { opacity: .5; pointer-events: none; }

.cookie-modal__actions { display: flex; gap: 8px; justify-content: flex-end; }
.cookie-modal__actions .cookie-btn--outline {
    border-color: var(--border);
    color: var(--text);
}

@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-banner__actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}
#wpp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    box-shadow: 0 4px 20px rgba(37,179,102,.5);
    transition: transform .2s, opacity .3s, box-shadow .2s;
    max-width: 280px;
}
#wpp-float span {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.4;
    text-transform: uppercase;
}
#wpp-float:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,179,102,.6); }
#wpp-float.hidden { opacity: 0; pointer-events: none; }
.no-wpp-float #wpp-float { display: none !important; }

@media (max-width: 600px) {
    #wpp-float {
        width: 90%;
        max-width: none;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 16px;
        padding: 14px 20px;
        justify-content: center;
    }
    #wpp-float:hover { transform: translateX(-50%) translateY(-2px); }
    #wpp-float span { font-size: 11px; }
}

/* ============================================================
   1300 PX MAX-WIDTH — conteúdo centralizado, bg full-width
   ============================================================ */

/* Barras com fundo full-width: usa padding para centralizar o conteúdo */
.header__top,
.header__contacts,
.header__main,
.breadcrumb,
.wpp-alert,
.category-icons,
.instagram-section {
    padding-left:  max(24px, calc((100% - 1300px) / 2));
    padding-right: max(24px, calc((100% - 1300px) / 2));
}
.page-header {
    padding-left:  max(24px, calc((100% - 1300px) / 2));
    padding-right: max(24px, calc((100% - 1300px) / 2));
    padding-top: 24px;
}
#site-footer {
    padding-left:  max(24px, calc((100% - 1300px) / 2));
    padding-right: max(24px, calc((100% - 1300px) / 2));
}
.nav-drawer ul {
    padding-left:  max(0px, calc((100% - 1300px) / 2));
    padding-right: max(0px, calc((100% - 1300px) / 2));
}

/* Seções sem background próprio: max-width + auto margin */
.section-title,
.carousel-section,
.promo-grid,
.essenciais-grid,
.produtos-grid {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.produto-detail {
    max-width: 1300px;
    margin: 24px auto;
}
.pagamento-section {
    max-width: 1300px;
    margin: 0 auto 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .essenciais-grid { grid-template-columns: repeat(4, 1fr); }
    .produtos-grid   { grid-template-columns: repeat(3, 1fr); }
    .header__nav-desktop a { font-size: 11px; padding: 20px 7px; }
}

@media (max-width: 900px) {
    .promo-grid      { grid-template-columns: 1fr; }
    .essenciais-grid { grid-template-columns: repeat(3, 1fr); }
    .produtos-grid   { grid-template-columns: repeat(2, 1fr); }
    .produto-detail  { grid-template-columns: 1fr; }
    .produto-detail__img { position: static; }
    .produto-detail__img-wrap { min-height: 260px; padding: 24px; }

    /* Footer mobile */
    .footer__main   { flex-direction: column; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 28px; }
    .footer__payment-badges { gap: 8px; }
    .footer__shipping-info p { font-size: 13px; }
}

/* Mobile: sempre hamburguer, sem nav desktop, sem contatos, sem frete */
@media (max-width: 768px) {
    /* Esconde setas do carousel — touch swipe substitui */
    .carousel-nav { display: none; }

    .header__top      { display: none; }
    .header__contacts { display: none; }
    .header__nav-desktop { display: none; }
    .menu-toggle      { display: flex; }
    .header__main     { padding: 0 16px; min-height: 56px; }
    .header__logo img { height: 40px; }

    .category-icons   { gap: 20px; padding: 20px 16px; }
    .essenciais-grid  { grid-template-columns: repeat(2, 1fr); }
    .produtos-grid    { grid-template-columns: repeat(2, 1fr); }

    .produto-detail   { margin: 12px; padding: 20px; gap: 20px; }
    .produto-detail__img-wrap { min-height: 220px; padding: 20px; }
    .produto-detail__title { font-size: 20px; }
    .produto-detail__promo { flex-direction: column; align-items: flex-start; gap: 8px; }
    .btn-wpp--grande { font-size: 14px !important; padding: 14px 20px !important; }
    .pagamento-section { margin: 0 12px 16px; }

    .section-title h1,
    .section-title h2 { font-size: 18px; }

    .footer__legal    { flex-direction: column; text-align: center; }
    .footer__legal-links { justify-content: center; }

    .promo-grid       { padding: 8px 16px 32px; }
    .carousel-section { padding: 0 16px 32px; }
    .produtos-grid    { padding: 16px; }

    .wpp-alert        { font-size: 13px; padding: 10px 16px; }
    .breadcrumb       { padding: 8px 16px; }
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}
.policy-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 3px solid var(--gold);
}
.policy-header h1 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}
.policy-header p { font-size: 1.05rem; color: #666; line-height: 1.8; margin-bottom: 8px; }
.update-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}
.policy-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 24px;
}
.policy-section h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}
.policy-section h2 i { color: var(--gold); font-size: 1.3rem; }
.policy-section h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin: 20px 0 10px; }
.policy-section p { margin-bottom: 14px; line-height: 1.8; font-size: 1rem; }
.policy-section ul, .policy-section ol { padding-left: 24px; margin-bottom: 16px; }
.policy-section ul li, .policy-section ol li { margin-bottom: 8px; line-height: 1.8; font-size: 1rem; }
.policy-section a { color: var(--gold); font-weight: 600; transition: color .2s; }
.policy-section a:hover { color: #b8890d; }

.highlight-box {
    background: #fff8e7;
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    margin: 16px 0;
}
.highlight-box p { margin: 0; font-weight: 500; }

.info-card {
    background: #f0fdf4;
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    margin: 16px 0;
}
.info-card h3 { color: var(--green); margin-top: 0; }
.info-card p { margin: 0; }

.destaque-prazo {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    margin: 20px 0;
    text-align: center;
}
.destaque-prazo .numero { font-family: var(--font-head); font-size: 4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.destaque-prazo .label { font-size: 1rem; opacity: .85; margin-top: 8px; }

.steps-list { counter-reset: steps; list-style: none; padding-left: 0; }
.steps-list li {
    counter-increment: steps;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}
.steps-list li::before {
    content: counter(steps);
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-card {
    background: #f8f9fa;
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.contact-card .item { display: flex; align-items: center; gap: 10px; font-size: 1rem; }
.contact-card .item i { color: var(--gold); font-size: 1.1rem; width: 20px; text-align: center; }

.rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
.right-card {
    background: #f8f9fa;
    border-radius: var(--radius);
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
}
.right-card strong { display: block; margin-bottom: 8px; font-size: 14px; }
.right-card p { margin: 0; color: #555; }

.contact-info { background: var(--dark); color: var(--white); border-radius: var(--radius); padding: 32px; }
.contact-info h3 { color: var(--gold); font-family: var(--font-head); margin-bottom: 16px; }
.contact-info a { color: var(--gold); font-size: 1.1rem; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.contact-info .tagline { font-style: italic; color: rgba(255,255,255,.75); margin-top: 16px; }
.contact-info .tagline strong { color: var(--gold); }

.footer-note { text-align: center; margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--border); color: #888; }

#backToTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    z-index: 998;
    transition: opacity .3s, transform .2s;
}
#backToTop.show { display: flex; }
#backToTop:hover { transform: translateY(-2px); }

@media (max-width: 768px) {
    .policy-container { padding: 24px 16px 40px; }
    .policy-header h1 { font-size: 1.6rem; }
    .policy-section { padding: 20px 16px; }
    .policy-section h2 { font-size: 1.15rem; }
    .rights-grid { grid-template-columns: 1fr 1fr; }
    .contact-card { flex-direction: column; gap: 12px; }
    .destaque-prazo .numero { font-size: 3rem; }
}
@media (max-width: 480px) {
    .rights-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   END POLICY PAGES
   ============================================================ */

/* ============================================================
   BLOG ARTICLES — Professional Layout
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.blog-article__hero {
    background: linear-gradient(135deg, #111 0%, #1e2a1e 100%);
    padding: 60px 24px 56px;
}
.blog-article__hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.blog-article__cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37,162,68,.15);
    color: #6fcf8a;
    border: 1px solid rgba(37,162,68,.35);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 14px;
    margin-bottom: 20px;
}
.blog-article__hero-inner h1 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 18px;
}
.blog-article__lead {
    font-size: 17px;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 24px;
}
.blog-article__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 12px;
    color: rgba(255,255,255,.45);
}
.blog-article__meta i { margin-right: 5px; }

/* ── Wrapper two-column ───────────────────────────────────── */
.blog-article__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 72px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* ── Main content ─────────────────────────────────────────── */
.blog-article__content {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.blog-article__body h2 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 12px;
    padding-left: 14px;
    border-left: 4px solid var(--green);
    line-height: 1.3;
}
.blog-article__body h2:first-child { margin-top: 0; }
.blog-article__body p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 16px;
}
.blog-article__body strong { color: var(--dark); }
.blog-article__body em { color: #666; font-style: italic; }

/* ── Sidebar ──────────────────────────────────────────────── */
.blog-article__sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Product card (sidebar) ───────────────────────────────── */
.blog-article__produto-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,.09);
    border-top: 4px solid var(--green);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-article__produto-card img {
    max-height: 160px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.1));
}
.blog-article__produto-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold);
    font-family: var(--font-head);
}
.blog-article__produto-card h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}
.blog-article__produto-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}
.blog-article__produto-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog-article__produto-card .btn-wpp {
    font-size: 12px !important;
    padding: 12px 16px !important;
    border-radius: 50px !important;
    justify-content: center;
    width: 100%;
}

/* ── Produtos lista (autocuidado) ─────────────────────────── */
.blog-article__produtos-lista {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.09);
    border-top: 4px solid var(--green);
    overflow: hidden;
}
.blog-article__produto-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
}
.blog-article__produto-mini:last-child { border-bottom: none; }
.blog-article__produto-mini:hover { background: #f9f9f9; }
.blog-article__produto-mini img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}
.blog-article__produto-mini > div { flex: 1; }
.blog-article__produto-mini strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
    line-height: 1.3;
}
.blog-article__produto-link {
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .blog-article__wrapper { grid-template-columns: 1fr 280px; gap: 28px; }
    .blog-article__content { padding: 32px; }
}
@media (max-width: 900px) {
    .blog-article__wrapper { grid-template-columns: 1fr; }
    .blog-article__sidebar { position: static; }
    .blog-article__hero-inner h1 { font-size: 28px; }
    .blog-article__produto-card { flex-direction: row; text-align: left; align-items: center; gap: 16px; }
    .blog-article__produto-card img { max-height: 100px; flex-shrink: 0; }
}
@media (max-width: 600px) {
    .blog-article__hero { padding: 40px 16px; }
    .blog-article__hero-inner h1 { font-size: 22px; }
    .blog-article__wrapper { padding: 24px 16px 48px; }
    .blog-article__content { padding: 24px 20px; }
    .blog-article__produto-card { flex-direction: column; text-align: center; }
    .blog-article__meta { flex-direction: column; gap: 8px; }
}

/* ============================================================
   BLOG LINKS — seções em categoria, home e produto
   ============================================================ */
.blog-links-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 48px 24px;
}
.blog-links-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--green);
}
.blog-links-section__header h2 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-links-section__header h2 i { color: var(--green); }
.blog-links-section .swiper-blog { overflow: hidden; padding-bottom: 28px; }
.blog-links-section .swiper-blog .swiper-scrollbar { bottom: 4px; }
.blog-links-section .swiper-slide { height: auto; padding-top: 6px; }
.blog-link-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--white);
    border-radius: 10px;
    border-top: 3px solid var(--green);
    padding: 20px 22px 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.blog-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.blog-link-card__cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--green);
    font-family: var(--font-head);
}
.blog-link-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}
.blog-link-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #aaa;
    margin-top: auto;
    padding-top: 10px;
}

/* Produto — banner artigo relacionado */
.produto-artigo-banner {
    max-width: 860px;
    margin: 0 auto 32px;
    padding: 0 24px;
}
.produto-artigo-banner a {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f0faf4;
    border: 1px solid #c3e6cb;
    border-left: 4px solid var(--green);
    border-radius: 10px;
    padding: 18px 20px;
    text-decoration: none;
    transition: box-shadow .2s, background .15s;
}
.produto-artigo-banner a:hover {
    background: #e6f7ed;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.produto-artigo-banner i {
    color: var(--green);
    font-size: 22px;
    flex-shrink: 0;
}
.produto-artigo-banner__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}
.produto-artigo-banner__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--green);
}
.produto-artigo-banner__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}
.produto-artigo-banner__cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .produto-artigo-banner__cta { display: none; }
}

@media (max-width: 768px) {
    .blog-links-section { padding: 32px 16px; }
}

/* ── Veja também — estilo editorial news/blog ─────────────── */
.blog-veja-tambem {
    background: #f2f4f7;
    padding: 56px 24px 64px;
    border-top: 1px solid #e0e4ea;
}
.blog-veja-tambem__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.blog-veja-tambem__inner h3 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--green);
    width: fit-content;
}
.blog-veja-tambem__inner h3 i { color: var(--green); }
.blog-veja-tambem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-veja-tambem__item {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    border-top: 3px solid var(--green);
}
.blog-veja-tambem__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.blog-veja-tambem__item-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.blog-veja-tambem__cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--green);
    font-family: var(--font-head);
}
.blog-veja-tambem__item strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.45;
}
.blog-veja-tambem__arrow {
    font-size: 12px;
    color: var(--green);
    font-weight: 700;
    margin-top: auto;
    padding-top: 12px;
}
@media (max-width: 900px) {
    .blog-veja-tambem__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .blog-veja-tambem { padding: 36px 16px 48px; }
    .blog-veja-tambem__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .essenciais-grid  { grid-template-columns: repeat(2, 1fr); }
    .section-title    { padding: 20px 16px 6px; }
    .produto-detail__title { font-size: 18px; }
    .trust-badges     { gap: 10px; justify-content: space-between; }
    .trust-badge      { min-width: 50px; font-size: 10px; }
    .discount-banner  { font-size: 14px; }
    .btn-wpp, .btn-call { font-size: 14px; padding: 14px 16px; }
    .category-icons   { gap: 12px; }
    .category-icon    { font-size: 11px; }
    .category-icon img { width: 42px; height: 42px; }
    .produto-card__img { min-height: 140px; padding: 14px; }
    .produto-card__img img { max-height: 120px; }
    .section-title h1, .section-title h2 { font-size: 16px; }
}
