:root {
    /* === PALETA OFICIAL FHARMA CIDADÃO (extraída do logo) === */
    --red: #C41E28;
    --red-dark: #8E1319;
    --red-darker: #5C0C10;
    --red-tint: #FDEEEC;
    --gold: #FFC800;
    --gold-dark: #E0A800;
    --gold-tint: #FFF6DC;
    --ink: #2A211C;
    --ink-soft: #6B5F58;
    --bg: #FFFFFF;
    --bg-alt: #FFF9F1;
    --border: #F1E3D3;
    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE5B;
    --shadow-red: rgba(196, 30, 40, 0.16);
    --radius: 16px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background-color: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.18;
    text-wrap: balance;
}

a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
ul { list-style: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 84px 0; }
@media (max-width: 1024px) { .section-padding { padding: 62px 0; } }
@media (max-width: 768px) { .section-padding { padding: 44px 0; } }

.bg-white { background-color: var(--bg); }
.bg-alt { background-color: var(--bg-alt); }
.bg-red { background-color: var(--red); }
.bg-ink { background-color: var(--ink); }

.section-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    width: 20px; height: 3px;
    background: var(--gold);
    border-radius: 3px;
    display: inline-block;
}
.section-label.on-dark { color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }

/* Reveal on scroll */
.reveal { opacity: 0; transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-up { transform: translateY(28px); }
.reveal.visible { opacity: 1; transform: translate(0, 0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* === BUTTONS === */
.btn-cta, .btn-outline, .btn-gold, .btn-white, .btn-wa {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
    padding: 15px 28px; border-radius: 100px;
    white-space: nowrap; transition: all 0.25s ease;
}
.btn-cta { background: var(--red); color: #fff; box-shadow: 0 10px 24px var(--shadow-red); }
.btn-cta:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--red-darker); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid rgba(42,33,28,0.25); color: var(--ink); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.55); color: #fff; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--gold-tint); transform: translateY(-2px); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.btn-wa svg, .btn-cta svg, .btn-gold svg { width: 19px; height: 19px; fill: currentColor; flex-shrink: 0; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* === TOPBAR === */
.topbar {
    background: var(--ink); color: rgba(255,255,255,0.85);
    font-size: 13px; padding: 8px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
.topbar-item a { color: #fff; }
.topbar-item a:hover { color: var(--gold); }
.topbar-badge {
    background: var(--red); color: #fff; font-weight: 600;
    padding: 3px 12px; border-radius: 100px; font-size: 12px;
}
@media (max-width: 700px) { .topbar .container { justify-content: center; text-align: center; } .topbar-item.hide-mobile { display: none; } }

/* === NAVBAR === */
.navbar {
    position: sticky; top: 0; left: 0; width: 100%;
    z-index: 1000; background: #fff;
    box-shadow: 0 2px 0 var(--border);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand img { height: 52px; width: auto; }
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a {
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
    color: var(--ink); position: relative; padding: 6px 0; white-space: nowrap;
}
.nav-links a.active, .nav-links a:hover { color: var(--red); }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 3px;
    background: var(--gold); border-radius: 3px;
}
.nav-right { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }

/* Fileira de utilidades (estilo Drogasil/Raia: ícone + legenda) */
.nav-utility { display: flex; align-items: center; gap: 26px; }
.nav-utility-item { display: flex; align-items: center; gap: 9px; }
.nav-utility-item svg { width: 23px; height: 23px; fill: var(--red); flex-shrink: 0; }
.nav-utility-text { display: flex; flex-direction: column; line-height: 1.3; white-space: nowrap; }
.nu-label { font-size: 11.5px; color: var(--ink-soft); }
.nu-value { font-size: 13.5px; font-weight: 700; color: var(--ink); font-family: 'Poppins', sans-serif; }
.nav-utility-item:hover svg { fill: var(--red-dark); }
.nav-utility-item:hover .nu-value { color: var(--red); }
@media (max-width: 1230px) { .nav-utility-item.hide-lg { display: none; } }
@media (max-width: 992px) { .nav-utility { display: none; } }

/* Carrinho compacto (mobile) */
.nav-cart-compact {
    position: relative; display: none; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%; background: var(--bg-alt); flex-shrink: 0;
}
.nav-cart-compact svg { width: 21px; height: 21px; fill: var(--ink); }
.nav-cart-compact:hover { background: var(--gold-tint); }
.nav-cart-count {
    position: absolute; top: -4px; right: -4px; background: var(--red); color: #fff;
    font-size: 11px; font-weight: 700; width: 19px; height: 19px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}
.nav-cart-count.hidden { display: none; }
@media (max-width: 992px) { .nav-cart-compact { display: flex; } }

.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 24px; z-index: 1001; flex-shrink: 0; }
@media (max-width: 992px) { .menu-toggle { display: flex; } }
.menu-toggle span { width: 100%; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-links {
    position: fixed; top: 0; right: -100%; width: min(320px, 80%); height: 100vh;
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 32px 32px; gap: 22px; transition: right 0.35s ease; box-shadow: -8px 0 30px rgba(0,0,0,0.12);
    z-index: 1001;
}
.nav-links.active { display: flex; right: 0; }
.nav-links a { font-size: 17px; }
@media (max-width: 992px) {
    .nav-brand img { height: 42px; }
    .nav-cta-desktop { display: none; }
}

/* === NAV SEARCH === */
.nav-search { flex: 1; max-width: 540px; margin: 0 20px; position: relative; display: flex; }
.nav-search input {
    width: 100%; padding: 12px 50px 12px 20px; border-radius: 100px;
    border: 1.5px solid var(--border); background: var(--bg-alt); font-size: 14px; color: var(--ink);
}
.nav-search input:focus { outline: none; border-color: var(--red); background: #fff; }
.nav-search button {
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px; border-radius: 50%; background: var(--red);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-search button svg { width: 17px; height: 17px; fill: #fff; }
@media (max-width: 992px) {
    .nav-container { flex-wrap: wrap; row-gap: 12px; height: auto; padding: 14px 0; }
    .nav-search { order: 3; flex-basis: 100%; max-width: 100%; margin: 0; }
}

/* === CATEGORY STRIP === */
.cat-strip { background: #fff; border-bottom: 1px solid var(--border); padding: 18px 0; }
.cat-strip-track { display: flex; gap: 30px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.cat-strip-track::-webkit-scrollbar { display: none; }
.cat-strip-item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; min-width: 78px; text-align: center; }
.cat-strip-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--red-tint); display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
.cat-strip-icon svg { width: 25px; height: 25px; fill: var(--red); transition: all 0.25s ease; }
.cat-strip-item:hover .cat-strip-icon { background: var(--red); transform: translateY(-3px); }
.cat-strip-item:hover .cat-strip-icon svg { fill: #fff; }
.cat-strip-item span { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.cat-strip-item.active .cat-strip-icon { background: var(--red); }
.cat-strip-item.active .cat-strip-icon svg { fill: #fff; }
.cat-strip-item.active span { color: var(--red); }

/* === PROMO BANNER (carrossel estilo loja) === */
.promo-carousel {
    position: relative; overflow: hidden; color: #fff; padding: 52px 0 66px;
    background: linear-gradient(120deg, #E23A3A 0%, var(--red) 48%, var(--red-dark) 100%);
}
.promo-carousel::before, .promo-carousel::after {
    content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); z-index: 0;
}
.promo-carousel::before { width: 420px; height: 420px; top: -220px; right: -100px; }
.promo-carousel::after { width: 280px; height: 280px; bottom: -160px; left: -80px; background: rgba(255,200,0,0.12); }
.promo-slide {
    position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.5s ease;
    display: flex; align-items: center; padding: 52px 0 66px;
}
.promo-slide.active { opacity: 1; visibility: visible; position: relative; }
.promo-banner-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; width: 100%; }
.promo-text .section-label { color: var(--gold); }
.promo-text .section-label::before { background: #fff; }
.promo-text h1 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 14px; }
.promo-text p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 24px; max-width: 460px; }
.promo-photo-frame {
    position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 3.1;
    box-shadow: 0 26px 50px rgba(60,6,8,0.4); border: 5px solid rgba(255,255,255,0.18);
}
.promo-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.promo-badge {
    position: absolute; top: -14px; right: -14px; width: 104px; height: 104px; border-radius: 50%;
    background: var(--gold); color: var(--red-darker); display: flex; align-items: center; justify-content: center;
    text-align: center; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 12.5px; line-height: 1.25;
    transform: rotate(-9deg); box-shadow: 0 10px 22px rgba(0,0,0,0.28); border: 4px solid #fff; z-index: 2;
}
.promo-dots { position: relative; z-index: 2; margin-top: 34px; display: flex; justify-content: center; gap: 9px; }
.promo-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: all 0.25s ease; }
.promo-dots button.active { background: var(--gold); width: 26px; border-radius: 6px; }
.promo-arrow {
    position: absolute; z-index: 3; top: 46%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.32); display: flex; align-items: center; justify-content: center;
}
.promo-arrow:hover { background: rgba(255,255,255,0.3); }
.promo-arrow svg { width: 18px; height: 18px; fill: #fff; }
.promo-prev { left: 12px; } .promo-next { right: 12px; }
@media (max-width: 860px) {
    .promo-banner-grid { grid-template-columns: 1fr; text-align: center; }
    .promo-text p { margin-left: auto; margin-right: auto; }
    .promo-text .hero-actions, .promo-text .section-label, .promo-text .hero-chips { justify-content: center; }
    .promo-photo-frame { max-width: 380px; margin: 0 auto; }
    .promo-arrow { display: none; }
}

/* === BANNER DE OFERTAS (espaço reservado) === */
.offer-banner { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 56px 0; }
.offer-banner-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.offer-banner-inner .section-label { justify-content: center; }
.offer-banner-inner h1 { font-size: clamp(26px, 3.6vw, 38px); margin: 12px 0 26px; }
.offer-banner-inner .hero-actions { justify-content: center; margin-bottom: 0; }

/* === VITRINE (produtos em destaque) === */
.shelf-scroll { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.shelf-scroll::-webkit-scrollbar { height: 6px; }
.shelf-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.shelf-scroll .product-card { min-width: 220px; max-width: 220px; scroll-snap-align: start; }
@media (max-width: 560px) { .shelf-scroll .product-card { min-width: 168px; max-width: 168px; } }
.shelf-tag {
    display: inline-flex; align-items: center; gap: 6px; background: #E8F8EE; color: #1D8A4A;
    font-size: 11.5px; font-weight: 700; padding: 4px 11px; border-radius: 100px; margin-bottom: 8px;
}

/* === HERO === */
.hero {
    position: relative; min-height: 620px; display: flex; align-items: center;
    color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(20,8,8,0.92) 0%, rgba(35,10,10,0.82) 42%, rgba(196,30,40,0.55) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; padding: 90px 0 70px; }
.hero-content .section-label { color: var(--gold); }
.hero-content .section-label::before { background: #fff; }
.hero-content h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); margin-bottom: 18px; }
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.88); margin-bottom: 30px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-chip {
    display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.24); backdrop-filter: blur(6px);
    padding: 9px 16px; border-radius: 100px; font-size: 13.5px; font-weight: 500;
}
.hero-chip svg { width: 16px; height: 16px; fill: var(--gold); }

/* === MARQUEE === */
.marquee-strip { background: var(--red); overflow: hidden; padding: 14px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 20px; animation: marquee 26s linear infinite; }
.mq-item { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.02em; }
.mq-sep { width: 28px; height: 28px; opacity: 0.95; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === DIFERENCIAIS / CARDS === */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 992px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 24px; transition: all 0.3s ease;
}
.diff-card:hover { border-color: var(--gold); box-shadow: 0 16px 32px rgba(196,30,40,0.08); transform: translateY(-4px); }
.diff-icon {
    width: 54px; height: 54px; border-radius: 14px; background: var(--red-tint);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.diff-icon svg { width: 27px; height: 27px; fill: var(--red); }
.diff-card h3 { font-size: 17px; margin-bottom: 8px; }
.diff-card p { color: var(--ink-soft); font-size: 14.5px; }

/* === CATEGORIAS === */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/3.3; display: flex; align-items: flex-end;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,8,8,0.88) 0%, rgba(20,8,8,0.1) 55%, transparent 100%); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card-body { position: relative; z-index: 1; padding: 22px; color: #fff; width: 100%; }
.cat-card-body span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
.cat-card-body h3 { color: #fff; font-size: 19px; }

/* === CATEGORIAS (ícones, sem foto) === */
.cat-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1024px) { .cat-icon-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .cat-icon-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-icon-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 18px; text-align: center; transition: all 0.3s ease;
}
.cat-icon-card:hover { border-color: var(--gold); box-shadow: 0 16px 32px rgba(196,30,40,0.08); transform: translateY(-4px); }
.cat-icon-card .cat-icon-circle {
    width: 68px; height: 68px; border-radius: 50%; background: var(--red-tint);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: all 0.3s ease;
}
.cat-icon-card .cat-icon-circle svg { width: 32px; height: 32px; fill: var(--red); }
.cat-icon-card:hover .cat-icon-circle { background: var(--red); }
.cat-icon-card:hover .cat-icon-circle svg { fill: #fff; }
.cat-icon-card h3 { font-size: 15px; }

/* === GALERIA === */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 12px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; transition: transform 0.4s ease, filter 0.4s ease; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.03); filter: brightness(1.05); }
.gallery-grid .g-tall { grid-row: span 2; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 130px; } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; } .gallery-grid .g-tall { grid-row: span 1; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(15,8,8,0.94); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; }
.lightbox-close { position: absolute; top: 24px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; }
.lightbox-close svg { width: 20px; height: 20px; fill: #fff; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; }
.lightbox-nav svg { width: 20px; height: 20px; fill: #fff; }
.lightbox-prev { left: 20px; } .lightbox-next { right: 20px; }

/* === CTA BANNER === */
.cta-banner { background: linear-gradient(115deg, var(--red-darker), var(--red)); color: #fff; text-align: center; padding: 64px 0; }
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 16.5px; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === VALUE STRIP (faixa de confiança, estilo redes grandes) === */
.value-strip { background: var(--ink); }
.value-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .value-strip-grid { grid-template-columns: repeat(2, 1fr); } }
.value-strip-item {
    display: flex; align-items: center; gap: 14px; padding: 28px 22px;
    border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.value-strip-grid .value-strip-item:nth-child(4n) { border-right: none; }
@media (max-width: 860px) { .value-strip-grid .value-strip-item:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.1); } .value-strip-grid .value-strip-item:nth-child(2n) { border-right: none; } }
@media (max-width: 560px) { .value-strip-grid { grid-template-columns: 1fr; } .value-strip-grid .value-strip-item { border-right: none; } }
.value-strip-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,200,0,0.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-strip-icon svg { width: 21px; height: 21px; fill: var(--gold); }
.value-strip-item strong { display: block; color: #fff; font-family: 'Poppins', sans-serif; font-size: 14.5px; margin-bottom: 2px; }
.value-strip-item span { color: rgba(255,255,255,0.62); font-size: 12.5px; }

/* === TRUST STRIP === */
.trust-strip { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.trust-item svg { width: 22px; height: 22px; fill: var(--red); flex-shrink: 0; }

/* === FOOTER === */
.footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 18px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.68); font-size: 14.5px; margin-bottom: 12px; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a svg { width: 17px; height: 17px; fill: #fff; }
.footer-social a:hover { background: var(--red); }
.footer-disclaimer { padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.48); line-height: 1.7; }
.footer-disclaimer p { margin-bottom: 6px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 22px 0; font-size: 13px; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--gold); }
.footer-nexora { color: var(--gold); font-weight: 600; }

/* === FLOAT WHATSAPP === */
.float-wa {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(37,211,102,0.45);
    animation: pulse-wa 2.4s infinite;
}
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed; left: 20px; right: 20px; bottom: -200px; z-index: 1500;
    max-width: 780px; margin: 0 auto; background: #fff; border: 1px solid var(--border);
    border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); padding: 20px 24px;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap; transition: bottom 0.5s ease;
}
.cookie-banner.show { bottom: 20px; }
.cookie-text { flex: 1; min-width: 240px; font-size: 13.5px; color: var(--ink-soft); }
.cookie-text a { color: var(--red); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie-ess, .btn-cookie-acc { padding: 10px 18px; border-radius: 100px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.btn-cookie-ess { border: 1px solid var(--border); color: var(--ink-soft); }
.btn-cookie-acc { background: var(--red); color: #fff; }

/* === MODAL DE ENDEREÇO === */
.address-modal {
    position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.address-modal.open { display: flex; }
.address-modal-backdrop { position: absolute; inset: 0; background: rgba(20,10,10,0.55); }
.address-modal-box {
    position: relative; z-index: 1; background: #fff; border-radius: 20px; padding: 30px;
    width: 100%; max-width: 440px; max-height: 90vh; overflow-y: auto;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.address-modal-close {
    position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
    background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
}
.address-modal-close svg { width: 15px; height: 15px; fill: var(--ink-soft); }
.address-modal-box h3 { font-size: 19px; margin-bottom: 6px; padding-right: 30px; }
.address-modal-box p.address-modal-hint { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 22px; }
.address-saved-view { display: none; align-items: flex-start; gap: 12px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin-top: 4px; }
.address-saved-view.show { display: flex; }
.address-saved-view svg { width: 20px; height: 20px; fill: var(--red); flex-shrink: 0; margin-top: 1px; }
.address-saved-view p { font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.address-saved-view button { color: var(--red); font-weight: 600; font-size: 13px; }

/* === LISTING HEADER (catálogo, estilo Drogasil/Raia: sem banner colorido) === */
.listing-header { background: #fff; padding: 32px 0 6px; }
.listing-header h1 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 5px; }
.listing-header p { color: var(--ink-soft); font-size: 14px; }

/* === PAGE HEADER (páginas internas) === */
.page-header { background: linear-gradient(115deg, var(--red-darker), var(--red)); color: #fff; padding: 150px 0 60px; text-align: center; }
.page-header h1 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.82); font-size: 16px; max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.85); } .breadcrumb a:hover { color: var(--gold); }

/* === TEASER INSTITUCIONAL (home) === */
.about-teaser { display: flex; align-items: center; gap: 36px; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px; }
.about-teaser-img { width: 220px; height: 220px; border-radius: 16px; object-fit: cover; flex-shrink: 0; }
.about-teaser-text h2 { font-size: 24px; margin-bottom: 10px; }
.about-teaser-text p { color: var(--ink-soft); margin-bottom: 18px; max-width: 520px; }
@media (max-width: 700px) {
    .about-teaser { flex-direction: column; text-align: center; padding: 26px; }
    .about-teaser-img { width: 100%; height: 200px; }
    .about-teaser-text p { margin-left: auto; margin-right: auto; }
}

/* === SOBRE === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-photos { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; }
.about-photos img { border-radius: 14px; object-fit: cover; width: 100%; height: 100%; }
.about-photos .ap-main { grid-row: span 2; aspect-ratio: 3/4; }
.about-photos .ap-small { aspect-ratio: 1/1; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16px; }
.stat-row { display: flex; gap: 34px; margin-top: 28px; flex-wrap: wrap; }
.stat-item strong { display: block; font-family: 'Poppins', sans-serif; font-size: 30px; color: var(--red); }
.stat-item span { font-size: 13.5px; color: var(--ink-soft); }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill { background: var(--bg-alt); border: 1px solid var(--border); padding: 8px 16px; border-radius: 100px; font-size: 13.5px; font-weight: 500; display: flex; align-items: center; gap: 7px; }
.pill svg { width: 14px; height: 14px; fill: var(--red); }

.info-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.info-card h3 { font-size: 15px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.info-card h3 svg { width: 18px; height: 18px; fill: var(--red); }
.info-card p, .info-card a { color: var(--ink-soft); font-size: 14.5px; display: block; margin-bottom: 4px; }
.info-card a:hover { color: var(--red); }

/* === SERVIÇOS === */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .service-grid { grid-template-columns: 1fr; } }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: flex; gap: 20px; }
.service-card .diff-icon { flex-shrink: 0; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 14.5px; }
.service-tag { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.service-tag.on { background: #E8F8EE; color: #1D8A4A; }
.service-tag.soon { background: var(--gold-tint); color: var(--gold-dark); }

/* === PRODUTOS / CATÁLOGO === */
.search-info {
    display: none; align-items: center; justify-content: space-between; gap: 14px;
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px;
    padding: 14px 20px; margin-bottom: 24px; font-size: 14.5px; font-weight: 500;
}
.search-info button { color: var(--red); font-weight: 700; font-size: 13px; white-space: nowrap; }
.no-results { display: none; text-align: center; padding: 60px 20px; }
.no-results p { color: var(--ink-soft); margin: 14px 0 22px; max-width: 420px; margin-left: auto; margin-right: auto; }

.popular-searches { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; font-size: 13.5px; }
.popular-searches span { color: var(--ink-soft); font-weight: 500; }
.popular-searches a { color: var(--red); font-weight: 600; background: var(--red-tint); padding: 5px 13px; border-radius: 100px; }
.popular-searches a:hover { background: var(--red); color: #fff; }

.cat-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.cat-filter-btn { padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--border); font-size: 13.5px; font-weight: 600; color: var(--ink-soft); font-family: 'Poppins', sans-serif; }
.cat-filter-btn.active, .cat-filter-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s ease; }
.product-card:hover { box-shadow: 0 16px 30px rgba(196,30,40,0.1); transform: translateY(-3px); border-color: var(--gold); }
.product-img { aspect-ratio: 1/1; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-cat-tag { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.92); color: var(--red); font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.03em; }
.product-shelf-badge { position: absolute; top: 10px; right: 10px; background: var(--gold); color: var(--red-darker); font-size: 10.5px; font-weight: 800; padding: 4px 10px; border-radius: 100px; }
.product-body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.product-body h3 { font-size: 14.5px; font-weight: 600; font-family: 'Inter', sans-serif; color: var(--ink); line-height: 1.35; min-height: 38px; }
.product-price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--red); font-size: 17px; margin-top: auto; }
.product-price small { font-family: 'Inter', sans-serif; font-weight: 400; color: var(--ink-soft); font-size: 12px; }
.product-add { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--ink); color: #fff; padding: 11px; border-radius: 10px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px; }
.product-add svg { width: 16px; height: 16px; fill: #fff; }
.product-add:hover { background: var(--red); }
.product-add.added { background: #1D8A4A; }

.rx-banner {
    display: flex; align-items: center; gap: 22px; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 26px 30px; flex-wrap: wrap;
}
.rx-banner-text { flex: 1; min-width: 220px; }
.rx-banner-text h3 { font-size: 17px; margin-bottom: 4px; }
.rx-banner-text p { color: var(--ink-soft); font-size: 14px; }
@media (max-width: 640px) { .rx-banner { flex-direction: column; text-align: center; } }

.catalog-disclaimer { background: var(--gold-tint); border: 1px solid #F0DBA0; border-radius: 12px; padding: 16px 20px; font-size: 13.5px; color: #7A5B00; margin-bottom: 34px; display: flex; gap: 12px; align-items: flex-start; }
.catalog-disclaimer svg { width: 20px; height: 20px; fill: #C99400; flex-shrink: 0; margin-top: 1px; }

/* === CARRINHO === */
.cart-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.cart-item-img { width: 74px; height: 74px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--bg-alt); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.cart-item-info span { font-size: 12.5px; color: var(--ink-soft); }
.qty-stepper { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: 100px; padding: 4px 6px; }
.qty-stepper button { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--ink); }
.qty-stepper button:hover { background: var(--bg-alt); }
.qty-stepper span { min-width: 18px; text-align: center; font-weight: 600; font-size: 14px; }
.cart-item-price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--red); font-size: 15px; white-space: nowrap; }
.cart-item-remove { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item-remove svg { width: 16px; height: 16px; fill: var(--ink-soft); }
.cart-item-remove:hover { background: var(--red-tint); }
.cart-item-remove:hover svg { fill: var(--red); }

.cart-summary { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; position: sticky; top: 100px; }
.cart-summary h3 { font-size: 18px; margin-bottom: 18px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 10px; }
.cart-summary-total { display: flex; justify-content: space-between; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 19px; padding-top: 14px; margin-top: 8px; border-top: 1px solid var(--border); color: var(--ink); }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty svg { width: 64px; height: 64px; fill: var(--border); margin-bottom: 18px; }
.cart-empty p { color: var(--ink-soft); margin-bottom: 22px; }
.cart-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; line-height: 1.5; }

/* === STORE CARD (Nossa Loja) === */
.store-card { display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 36px rgba(20,10,10,0.06); }
@media (max-width: 800px) { .store-card { flex-direction: column; } }
.store-card-photo { position: relative; flex: 0 0 42%; min-height: 280px; }
.store-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.store-status {
    position: absolute; top: 16px; left: 16px; display: flex; align-items: center; gap: 7px;
    background: rgba(20,10,10,0.75); backdrop-filter: blur(6px); color: #fff; font-size: 12.5px; font-weight: 600;
    padding: 7px 14px; border-radius: 100px;
}
.store-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #8a8a8a; flex-shrink: 0; }
.store-status.open::before { background: #2ecc71; box-shadow: 0 0 0 3px rgba(46,204,113,0.25); }
.store-status.closed::before { background: #ff5c5c; }
.store-card-body { flex: 1; padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.store-card-body h2 { font-size: 26px; margin-bottom: 12px; }
.store-card-address { color: var(--ink-soft); font-size: 15px; margin-bottom: 10px; max-width: 440px; }
.store-card-hours { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; margin-bottom: 22px; }

/* === CONTATO === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.contact-card .diff-icon { width: 44px; height: 44px; flex-shrink: 0; }
.contact-card .diff-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 15px; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--ink-soft); font-size: 14px; }
.contact-card a:hover { color: var(--red); }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 420px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px;
    font-size: 14.5px; color: var(--ink); background: #fff; transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; padding: 4px 22px; background: #fff; }
.faq-item summary {
    cursor: pointer; list-style: none; padding: 18px 28px 18px 0; position: relative;
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15.5px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    font-size: 22px; color: var(--red); font-weight: 400; transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--ink-soft); font-size: 14.5px; padding-bottom: 20px; max-width: 640px; }
.faq-item p a { color: var(--red); font-weight: 600; }

/* === LEGAL PAGES === */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-size: 21px; margin: 34px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: 15px; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content li { list-style: disc; margin-bottom: 8px; }
.legal-content strong { color: var(--ink); }
.legal-updated { font-size: 13px; color: var(--ink-soft); margin-bottom: 30px; }

/* === 404-ish empty states / misc === */
.hr-soft { height: 1px; background: var(--border); border: 0; margin: 40px 0; }
