/* ============================================================
   METALIS RJ — Stylesheet
   Alta Performance | Mobile-First | CSS Puro
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === Paleta METALIS — INVERTIDA (branco ↔ bordô) === */
  --gold:       #B8960C;   /* Dourado da logo — triângulo */
  --gold-dark:  #96790a;
  --gold-light: #e8ce7a;
  --wine:       #ffffff;   /* era bordô, agora branco */
  --wine-dark:  #f0e8e9;   /* era bordô escuro, agora off-white */
  --wine-mid:   #e6dbdc;   /* era bordô médio, agora claro */
  --wine-light: #ddd0d1;   /* era bordô claro, agora ainda mais claro */
  --dark:       #ffffff;   /* era bordô → agora branco */
  --dark-2:     #f5eeee;   /* era bordô muito escuro → agora off-white */
  --gray-800:   #1f2937;
  --gray-600:   #4b5563;
  --gray-500:   #6b7280;
  --gray-400:   #9ca3af;
  --gray-300:   #d1d5db;
  --gray-100:   #f3f4f6;
  --white:      #5B1E27;   /* era branco → agora bordô */
  --copper:     #b87333;
  --bronze:     #9b6c1d;
  --shadow:     0 4px 28px rgba(91,30,39,.25);
  --radius:     8px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: rgba(255, 245, 246, .9);   /* texto claro no fundo bordô */
  background: var(--white);          /* --white agora = bordô #5B1E27 */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--gray { background: var(--gray-100); }
.section--gold { background: var(--gold); color: var(--dark); }
.section--wine { background: var(--wine); color: var(--white); }

.section__tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section--dark .section__tag { color: var(--gold-light); }

.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
}
.section--dark .section__subtitle { color: var(--gray-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold:hover { background: var(--gold-dark); color: var(--white); }
.btn--wine {
  background: var(--wine);
  color: var(--white);
}
.btn--wine:hover { background: var(--wine-dark); }
.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--dark); }
.btn--outline-wine {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-wine:hover { background: var(--white); color: var(--wine); }
.btn--white {
  background: var(--white);
  color: var(--wine);
  font-weight: 800;
}
.btn--white:hover { background: var(--gold); color: var(--dark); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 0;
  transition: var(--transition);
  opacity: .93;
}
.nav__logo:hover { opacity: 1; }
.nav__logo img {
  height: 80px !important;
  width: auto !important;
  display: block;
  /* Header agora é branco — logo preto original, sem inversão */
  filter: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-400);
  border-radius: 6px;
  transition: var(--transition);
}
.nav__link:hover,
.nav__link--active { color: var(--white); background: rgba(255,255,255,.06); }

.nav__cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 8px 18px !important;
  border-radius: 6px;
}
.nav__cta:hover { background: var(--gold-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Mobile Nav ---------- */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(201,168,67,.15);
    gap: 4px;
  }
  .nav__links--open { display: flex; }
  .nav__link { width: 100%; }
  .nav__toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 85% 30%, rgba(184,150,12,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 5% 90%, rgba(255,255,255,.06) 0%, transparent 55%);
}

.hero .container { position: relative; z-index: 1; }

.hero__inner {
  position: relative;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,67,.15);
  border: 1px solid rgba(201,168,67,.3);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-400);
}
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Products Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(91,30,39,.25);
  transform: translateY(-5px);
  border-color: var(--gold);
}

/* Imagem do produto no card */
.product-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card__img img {
  transform: scale(1.07);
}
.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.product-card__icon--gold { background: rgba(201,168,67,.12); }
.product-card__icon--copper { background: rgba(184,115,51,.12); }
.product-card__icon--bronze { background: rgba(155,108,29,.12); }
.product-card__icon--iron { background: rgba(31,41,55,.08); }

.product-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-800);
}

.product-card__desc {
  font-size: .9rem;
  color: var(--gray-600);
  flex: 1;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.product-card__tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold-dark);
  font-size: .9rem;
  font-weight: 700;
  margin-top: 8px;
  transition: var(--transition);
}
.product-card__link:hover { gap: 8px; }

/* ---------- Specs Table ---------- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.specs-table th {
  background: var(--dark);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.specs-table td {
  padding: 13px 20px;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: rgba(201,168,67,.04); }

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px;
}
.section--gray .feature-card {
  background: var(--white);
  border-color: var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.feature-card__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-card__desc {
  font-size: .85rem;
  color: var(--gray-400);
}
.section--gray .feature-card__desc { color: var(--gray-600); }

/* ---------- Applications ---------- */
.applications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.application-tag {
  background: rgba(201,168,67,.1);
  border: 1px solid rgba(201,168,67,.25);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 600;
}
.section--gray .application-tag {
  background: rgba(201,168,67,.08);
  color: var(--bronze);
  border-color: rgba(201,168,67,.2);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-banner__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner__desc {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,67,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: .95rem;
  color: var(--gray-400);
}
.contact-info__value a { transition: var(--transition); }
.contact-info__value a:hover { color: var(--gold-light); }

/* Map embed */
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  border: 1px solid rgba(255,255,255,.08);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 56px;
  border-bottom: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(184,150,12,.18) 0%, transparent 70%);
}
.page-hero__inner { position: relative; }
.page-hero__badge {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero__title em { font-style: normal; color: var(--gold); }
.page-hero__desc {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 28px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--gray-600); }

/* ---------- Footer ---------- */
.footer {
  background: #ffffff;
  color: var(--gray-600);
  padding: 56px 0 32px;
  border-top: 2px solid var(--gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 900px) and (min-width: 641px) { .footer__grid { grid-template-columns: 1fr 1fr; } }

.footer__logo {
  margin-bottom: 16px;
  display: inline-block;
  padding: 0;
}
.footer__logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.4));
}

.footer__desc {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer__social-link:hover { background: var(--gold); color: var(--dark); }

.footer__heading {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: .88rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer__link:hover { color: var(--gold-light); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
}
.footer__bottom a { color: var(--gold); }
.footer__bottom a:hover { text-decoration: underline; }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: pulse-wpp 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}

/* ---------- Divider ---------- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.gap-12 { gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }

/* ---------- Sobre (Quem Somos) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.about-stat {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.about-stat__number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-dark);
}
.about-stat__label {
  font-size: .8rem;
  color: var(--gray-600);
  font-weight: 600;
  margin-top: 4px;
}

/* ---------- Onde Comprar ---------- */
.store-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

/* ---------- Urgency Badge ---------- */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #86efac;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: .03em;
}
.urgency-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}

/* ---------- Social Proof Section ---------- */
.social-proof {
  background: var(--gold);
  padding: 28px 0;
}
.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.social-proof__item {
  padding: 12px 16px;
  border-right: 1px solid rgba(91,30,39,.15);
}
.social-proof__item:last-child { border-right: none; }
.social-proof__number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.social-proof__label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--wine-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .social-proof__grid { grid-template-columns: repeat(2,1fr); }
  .social-proof__item:nth-child(2) { border-right: none; }
  .social-proof__item:nth-child(3) { border-right: 1px solid rgba(91,30,39,.15); border-top: 1px solid rgba(91,30,39,.15); }
  .social-proof__item:nth-child(4) { border-top: 1px solid rgba(91,30,39,.15); border-right: none; }
}

/* ---------- Mobile Sticky CTA Bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 10px 16px;
  gap: 10px;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
}
.mobile-cta-bar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
}
.mobile-cta-bar__phone:hover { color: var(--gold-light); }
.mobile-cta-bar__divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.mobile-cta-bar__wpp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  border-radius: 8px;
  padding: 10px 14px;
  text-decoration: none;
  transition: background .2s;
}
.mobile-cta-bar__wpp:hover { background: #1da851; }
.mobile-cta-bar__wpp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  /* Evitar que o float WPP sobreponha a barra */
  .whatsapp-float { bottom: 84px; }
  /* Padding para o conteúdo não ser coberto pela barra */
  body { padding-bottom: 68px; }
}

/* ======================================================
   MOBILE COMPREHENSIVE FIXES
   ====================================================== */

/* ---------- FAQ / details+summary ---------- */
details {
  cursor: pointer;
}
details summary {
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  line-height: 1.45;
}
details summary::-webkit-details-marker { display: none; }
details summary .faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  color: var(--gold-dark);
  transition: transform .2s, background .2s;
  margin-top: 1px;
}
details[open] summary .faq-toggle {
  transform: rotate(45deg);
  background: rgba(201,168,67,.15);
}
/* Fallback para o <span>+</span> simples */
details summary > span:last-child:not(.faq-toggle) {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold-dark);
  transition: transform .2s;
  display: inline-block;
  line-height: 1;
  margin-top: 2px;
}
details[open] summary > span:last-child:not(.faq-toggle) {
  transform: rotate(45deg);
}
details > p, details > div {
  padding-top: 10px;
}

/* ---------- about-grid: forçar 1 coluna no mobile (inline override) ---------- */
@media (max-width: 768px) {
  .about-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero { padding: 60px 0 52px; min-height: auto; }
  .page-hero { padding: 44px 0 36px; }

  /* Botões hero full-width */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Botões de produto full-width */
  .page-hero__inner .d-flex { flex-direction: column; }
  .page-hero__inner .btn { width: 100%; justify-content: center; text-align: center; }

  /* Tabelas com scroll horizontal */
  .specs-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Urgency badge — permite quebrar linha */
  .urgency-badge { white-space: normal; text-align: center; justify-content: center; }

  /* CTA banner empilhado */
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; max-width: 380px; justify-content: center; }

  /* Contact grid já tem breakpoint, mas garante */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Footer grid responsivo */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Features grid 2 cols no mobile */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .feature-card { padding: 18px 14px; }
  .feature-card__icon { font-size: 1.3rem; }

  /* Applications list */
  .applications-list { gap: 8px; }
  .application-tag { font-size: .8rem; padding: 6px 12px; }

  /* Produtos grid 1 col no mobile pequeno já via auto-fit */
  /* Map wrap */
  .map-wrap { height: 260px; }

  /* Specs table font menor */
  .specs-table th, .specs-table td { font-size: .82rem; padding: 10px 14px; }
}

/* ---------- Extra small (< 480px) ---------- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 36px 0; }
  .hero { padding: 52px 0 44px; }
  .page-hero { padding: 36px 0 28px; }

  .hero__title { font-size: 1.75rem; }
  .hero__desc { font-size: .95rem; }

  .section__title { font-size: 1.45rem; }
  .page-hero__title { font-size: 1.6rem; }

  /* Social proof — números menores */
  .social-proof__number { font-size: 1.5rem; }
  .social-proof__label { font-size: .65rem; }
  .social-proof { padding: 20px 0; }

  /* Features grid 1 col em telas muito pequenas */
  .features-grid { grid-template-columns: 1fr; }

  /* Hero trust items empilhados */
  .hero__trust { gap: 14px; }

  /* Urgency badge menor */
  .urgency-badge { font-size: .72rem; padding: 4px 10px; }

  /* Botões menores */
  .btn--lg { padding: 14px 24px; font-size: .95rem; }

  /* Mobile CTA bar font menor */
  .mobile-cta-bar__phone { font-size: .8rem; }
  .mobile-cta-bar__wpp { font-size: .82rem; padding: 9px 12px; }

  /* Form row 1 col */
  .form-row { grid-template-columns: 1fr !important; }

  /* Contact tabs empilhados */
  .contact-tabs { flex-direction: column; }

  /* Social proof só 2 col */
  .social-proof__grid { grid-template-columns: repeat(2,1fr); }

  /* About-grid ga 1 col */
  .about-grid { gap: 20px !important; }

  /* FAQ dentro do about-grid — padding menor */
  details { padding: 11px 12px !important; }
}
  font-weight: 600;
  margin-top: 4px;
}

/* ---------- Onde Comprar ---------- */
.store-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

/* ---------- Urgency Badge ---------- */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #86efac;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: .03em;
  white-space: normal;
}
.urgency-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}

/* ---------- Social Proof Section ---------- */
.social-proof {
  background: var(--gold);
  padding: 28px 0;
}
.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.social-proof__item {
  padding: 12px 16px;
  border-right: 1px solid rgba(91,30,39,.15);
}
.social-proof__item:last-child { border-right: none; }
.social-proof__number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.social-proof__label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--wine-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .social-proof__grid { grid-template-columns: repeat(2,1fr); }
  .social-proof__item:nth-child(2) { border-right: none; }
  .social-proof__item:nth-child(3) { border-right: 1px solid rgba(91,30,39,.15); border-top: 1px solid rgba(91,30,39,.15); }
  .social-proof__item:nth-child(4) { border-top: 1px solid rgba(91,30,39,.15); border-right: none; }
}

/* ---------- Mobile Sticky CTA Bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 10px 16px;
  gap: 10px;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
}
.mobile-cta-bar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
}
.mobile-cta-bar__phone:hover { color: var(--gold-light); }
.mobile-cta-bar__divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.mobile-cta-bar__wpp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  border-radius: 8px;
  padding: 10px 14px;
  text-decoration: none;
  transition: background .2s;
}
.mobile-cta-bar__wpp:hover { background: #1da851; }
.mobile-cta-bar__wpp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  .whatsapp-float { bottom: 84px; }
  body { padding-bottom: 68px; }
}

/* ---------- Hero Canvas ---------- */
.hero {
  min-height: 540px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .65;
}
.hero::before {
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 80% at 0% 50%, rgba(61,18,25,.85) 0%, transparent 65%),
    radial-gradient(ellipse 70% 70% at 85% 30%, rgba(184,150,12,.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 5% 90%, rgba(255,255,255,.04) 0%, transparent 55%);
}
.hero .container { position: relative; z-index: 2; }

/* ======================================================
   FAQ / details + summary
   ====================================================== */
details { cursor: pointer; }
details summary {
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  line-height: 1.45;
}
details summary::-webkit-details-marker { display: none; }
details summary .faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  color: var(--gold-dark);
  transition: transform .2s, background .2s;
  margin-top: 1px;
}
details[open] summary .faq-toggle {
  transform: rotate(45deg);
  background: rgba(201,168,67,.18);
  color: var(--gold-dark);
}
details summary > span:last-child:not(.faq-toggle) {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold-dark);
  transition: transform .2s;
  display: inline-block;
  line-height: 1;
  margin-top: 2px;
}
details[open] summary > span:last-child:not(.faq-toggle) {
  transform: rotate(45deg);
}
details > p, details > div { padding-top: 10px; }

/* ======================================================
   RESPONSIVE — Mobile Comprehensive Fixes
   ====================================================== */

/* about-grid: forçar 1 coluna no mobile mesmo com inline styles */
@media (max-width: 768px) {
  .about-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero { padding: 60px 0 52px; min-height: auto; }
  .page-hero { padding: 44px 0 36px; }

  /* Botões hero full-width */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Botões de produto full-width */
  .page-hero__inner .d-flex { flex-direction: column; }
  .page-hero__inner .btn { width: 100%; justify-content: center; text-align: center; }

  /* Tabelas com scroll horizontal */
  .specs-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* CTA banner empilhado */
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; max-width: 380px; justify-content: center; }

  /* Features grid 2 cols */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .feature-card { padding: 18px 14px; }
  .feature-card__icon { font-size: 1.3rem; }

  /* Map wrap */
  .map-wrap { height: 260px; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Urgency badge */
  .urgency-badge { white-space: normal; text-align: center; justify-content: center; }

  /* Specs table */
  .specs-table th, .specs-table td { font-size: .82rem; padding: 10px 14px; }
}

/* Extra small (< 480px) */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 36px 0; }
  .hero { padding: 52px 0 44px; }
  .page-hero { padding: 36px 0 28px; }

  .hero__title { font-size: 1.75rem; }
  .hero__desc { font-size: .95rem; }
  .section__title { font-size: 1.45rem; }
  .page-hero__title { font-size: 1.6rem; }

  .social-proof__number { font-size: 1.5rem; }
  .social-proof__label { font-size: .65rem; }
  .social-proof { padding: 20px 0; }

  .features-grid { grid-template-columns: 1fr; }

  .hero__trust { gap: 14px; }

  .urgency-badge { font-size: .72rem; padding: 4px 10px; }

  .btn--lg { padding: 14px 24px; font-size: .95rem; }

  .mobile-cta-bar__phone { font-size: .8rem; }
  .mobile-cta-bar__wpp { font-size: .82rem; padding: 9px 12px; }

  .contact-tabs { flex-direction: column; }

  .about-grid { gap: 20px !important; }

  details { padding: 11px 12px !important; }
}
flex-direction: column; }
}

/* ============================================================
   OVERRIDES — Paleta Invertida (bordô ↔ branco)
   Garante legibilidade em todos os contextos
   ============================================================ */

/* --- Seções com fundo claro (section--dark agora = branco) --- */
.section--dark { color: var(--gray-800); }
.section--dark .section__tag { color: var(--gold-dark); }
.section--dark .section__title { color: var(--gray-800); }
.section--dark .section__subtitle { color: var(--gray-600); }
.section--dark .feature-card__title { color: var(--gray-800); }
.section--dark .feature-card__desc { color: var(--gray-600); }

/* --- Seções cinza (section--gray) — fundo claro, texto escuro --- */
.section--gray { color: var(--gray-800); }
.section--gray .section__title { color: var(--gray-800); }
.section--gray .section__subtitle { color: var(--gray-600); }
.section--gray .feature-card__title { color: var(--gray-800); }

/* --- Seções sem background explícito (herdam fundo bordô do body) --- */
/* Títulos e subtítulos nas seções brancas (specs, etc.) */
.section .section__title,
.section .section__subtitle { color: rgba(255, 245, 246, .92); }
.section .section__tag { color: var(--gold-light); }
/* Override para seções cinza e dark que têm seus próprios fundos */
.section--gray .section__title,
.section--gray .section__subtitle,
.section--dark .section__title,
.section--dark .section__subtitle { color: inherit; }

/* --- Cabeçalho/nav (agora branco) --- */
.header { background: var(--dark); border-bottom: 2px solid var(--gold); }
.nav__link { color: var(--gray-600); }
.nav__link:hover,
.nav__link--active { color: var(--white); background: rgba(91,30,39,.08); }
.nav__cta { color: var(--dark) !important; }
.nav__toggle span { background: var(--white); }

/* Mobile nav dropdown (agora fundo off-white) */
@media (max-width: 768px) {
  .nav__links {
    background: var(--dark-2);
    border-bottom-color: rgba(91,30,39,.15);
  }
  .nav__link { color: var(--gray-700, #374151); }
  .nav__link:hover, .nav__link--active { color: var(--white); background: rgba(91,30,39,.1); }
}

/* --- Product cards (fundo bordô do body) --- */
.product-card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
.product-card:hover { border-color: var(--gold); }
.product-card__title { color: rgba(255,245,246,.95); }
.product-card__desc { color: rgba(255,245,246,.72); }
.product-card__tag {
  background: rgba(255,255,255,.1);
  color: rgba(255,245,246,.8);
}
.product-card__link { color: var(--gold-light); }

/* --- Specs table (no fundo bordô) --- */
.specs-table {
  background: rgba(255,255,255,.06);
  box-shadow: 0 4px 28px rgba(0,0,0,.3);
}
.specs-table th { background: rgba(255,255,255,.12); color: var(--gold); }
.specs-table td { color: rgba(255,245,246,.85); border-bottom-color: rgba(255,255,255,.08); }
.specs-table tr:hover td { background: rgba(201,168,67,.08); }

/* --- Store card (onde-comprar) --- */
.store-card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,245,246,.9);
}
.store-card h2, .store-card h3, .store-card p, .store-card a { color: rgba(255,245,246,.9); }
.store-card a:hover { color: var(--gold-light); }

/* --- About stats --- */
.about-stat {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.about-stat__number { color: var(--gold-light); }
.about-stat__label { color: rgba(255,245,246,.7); }

/* --- Footer (agora branco) --- */
.footer { color: var(--gray-600); }
.footer__heading { color: var(--gray-800); }
.footer__link { color: var(--gray-600); }
.footer__link:hover { color: var(--gold-dark); }
.footer__desc { color: var(--gray-600); }
.footer__social-link { background: rgba(91,30,39,.08); color: var(--gray-600); }
.footer__social-link:hover { background: var(--gold); color: var(--dark); }
.footer__bottom { border-top-color: rgba(91,30,39,.1); color: var(--gray-500); }
.footer__bottom a { color: var(--gold-dark); }
.footer__logo img { filter: none; }

/* --- LP Header (agora branco) --- */
.lp-header { background: var(--dark); }
.lp-header .nav__cta-header { color: var(--dark) !important; }

/* --- LP Footer (agora branco) --- */
.lp-footer { background: var(--dark); border-top-color: var(--gold); }
.lp-footer__logo img { filter: none; }
.lp-footer__info { color: var(--gray-600); }
.lp-footer__copy { color: var(--gray-500); border-top-color: rgba(91,30,39,.1); }
.lp-footer__copy a { color: var(--gray-600); }

/* --- Mobile CTA bar (agora branco) --- */
.mobile-cta-bar { background: var(--dark); border-top-color: var(--gold); }
.mobile-cta-bar__phone { color: var(--white); }
.mobile-cta-bar__phone:hover { color: var(--gold-dark); }
.mobile-cta-bar__divider { background: rgba(91,30,39,.2); }

/* --- CTA Banner (gradiente bordô → agora branco) --- */
.cta-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f5eeee 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.cta-banner__title { color: var(--white); }
.cta-banner__desc { color: rgba(91,30,39,.75); }

/* Botão branco no CTA Banner */
.btn--white { background: var(--white); color: var(--dark); }
.btn--white:hover { background: var(--gold); color: var(--dark); }
.btn--outline-wine { border-color: var(--white); color: var(--white); }
.btn--outline-wine:hover { background: var(--white); color: var(--dark); }

/* --- Social proof (fundo dourado — ok, apenas ajusta label) --- */
.social-proof__label { color: var(--gold-dark); }
.social-proof__number { color: var(--dark); }

/* --- Contact page (fundo bordô do body) --- */
.contact-info__value { color: rgba(255,245,246,.85); }
.contact-info__value a { color: rgba(255,245,246,.85); }
.contact-info__value a:hover { color: var(--gold-light); }

/* --- FAQ details (fundo bordô body) --- */
details { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12) !important; border-radius: 8px; }
details summary { color: rgba(255,245,246,.92) !important; }
details > p { color: rgba(255,245,246,.78) !important; }

/* Override FAQ em section--gray (fundo claro) */
.section--gray details { background: var(--dark); border-color: rgba(91,30,39,.08) !important; }
.section--gray details summary { color: var(--gray-800) !important; }
.section--gray details > p { color: var(--gray-600) !important; }

/* --- Página hero e trust bar no body bordô --- */
.page-hero__desc { color: rgba(255,245,246,.8); }
.trust-bar { background: rgba(255,255,255,.06); border-top-color: var(--gold); }
.trust-item { color: rgba(255,245,246,.8); }
.trust-item__check { color: var(--gold); }

/* --- Mid-CTA já usa gradient escuro — mantém texto claro --- */
.mid-cta__eyebrow { color: var(--gold); }
.mid-cta__title { color: rgba(255,245,246,.95); }
.mid-cta__sub { color: rgba(255,245,246,.72); }

/* --- Application tags no fundo bordô --- */
.section--dark .application-tag { color: var(--gold-dark); background: rgba(201,168,67,.1); border-color: rgba(201,168,67,.25); }

/* --- Tabela mt-16 nota abaixo --- */
.section p[style*="color:var(--gray-600)"] { color: rgba(255,245,246,.65) !important; }


/* ============================================================
   FIXES v2 — Legibilidade + Banner Industrial
   ============================================================ */

/* section--dark: subtítulo estava claro demais no fundo branco */
.section--dark .section__subtitle { color: var(--gray-600) !important; }
.section--dark .feature-card__desc { color: var(--gray-600) !important; }

/* section--gold: texto legível sobre dourado */
.section--gold { color: var(--gray-800) !important; }
.section--gold .social-proof__label { color: #5a3e06; }
.section--gold .social-proof__number { color: #2d1f03; }

/* section--gray: subtítulo e textos gerais */
.section--gray .section__subtitle { color: var(--gray-600); }
.section--gray p { color: var(--gray-600); }

/* ===== CTA BANNER — visual industrial / galpão ===== */
.cta-banner {
  background-color: #0e0b05;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(184,150,12,.07) 0px,
      rgba(184,150,12,.07) 1px,
      transparent 1px,
      transparent 32px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(184,150,12,.04) 0px,
      rgba(184,150,12,.04) 1px,
      transparent 1px,
      transparent 32px
    ),
    linear-gradient(160deg, #1c1005 0%, #090603 55%, #160e04 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.cta-banner__title { color: #ffffff; }
.cta-banner__desc { color: rgba(255,255,255,.72); }

/* Botão principal no banner escuro */
.cta-banner .btn--white {
  background: var(--gold);
  color: #1a0e04;
  border-color: var(--gold);
}
.cta-banner .btn--white:hover {
  background: var(--gold-dark);
  color: #ffffff;
}
/* Botão outline no banner escuro */
.cta-banner .btn--outline-wine {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.88);
}
.cta-banner .btn--outline-wine:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* hero/page-hero: bg permanece como --dark (branco na inversão) — textos ajustados */
.hero { background: var(--dark); color: var(--gray-800); }
.hero__title { color: var(--gray-800); }
.hero__title em { color: var(--gold-dark); }
.hero__desc { color: var(--gray-600); }
.hero__badge { background: rgba(184,150,12,.1); border-color: rgba(184,150,12,.25); color: var(--gold-dark); }
.hero__trust-item { color: var(--gray-600); }
.page-hero { background: var(--dark); color: var(--gray-800); }
.page-hero__title { color: var(--gray-800); }
.page-hero__title em { color: var(--gold-dark); }
.page-hero__desc { color: var(--gray-600) !important; }
.page-hero__badge { color: var(--gold-dark); }
.breadcrumb { color: var(--gray-500); }
.breadcrumb a { color: var(--gold-dark); }

/* urgency badge no hero branco */
.urgency-badge {
  background: rgba(184,150,12,.1);
  border-color: rgba(184,150,12,.25);
  color: #5a3e06;
}
.urgency-badge::before { background: var(--gold-dark); }

/* botões no hero (fundo branco) */
.page-hero .btn--outline {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}
.page-hero .btn--outline:hover { background: var(--gold); color: #1a0e04; }

/* mobile nav dropdown no fundo branco */
.nav__links { background: var(--dark); }
.nav__toggle span { background: var(--white); }

/* specs table dentro do hero / section branca */
.section .specs-table th { background: #1a0e04; color: var(--gold); }

/* footer logo no footer branco — sem filtro */
.footer__logo img { filter: none; }

/* texto nas seções sem classe (no body bordô) — garante legível */
.section:not(.section--dark):not(.section--gray):not(.section--gold) {
  color: rgba(255,245,246,.88);
}
.section:not(.section--dark):not(.section--gray):not(.section--gold) .section__title {
  color: rgba(255,245,246,.95);
}
.section:not(.section--dark):not(.section--gray):not(.section--gold) .section__subtitle {
  color: rgba(255,245,246,.72);
}
.section:not(.section--dark):not(.section--gray):not(.section--gold) .section__tag {
  color: var(--gold-light);
}


/* ============================================================
   FIXES v3 — Ajustes finais de legibilidade
   ============================================================ */

/* Botão gold no hero/page-hero (fundo branco): texto escuro para contraste */
.hero .btn--gold,
.page-hero .btn--gold { color: #1a0e04 !important; }
.hero .btn--gold:hover,
.page-hero .btn--gold:hover { background: var(--gold-dark); color: #fff !important; }

/* Nav: links legíveis no fundo branco */
.nav__link { color: var(--gray-600) !important; }
.nav__link:hover,
.nav__link--active { color: var(--white) !important; background: rgba(91,30,39,.1) !important; }
.nav__cta { color: #1a0e04 !important; }
.nav__cta:hover { color: #fff !important; }

/* Nav hamburguer no fundo branco: traços bordô */
.nav__toggle span { background: var(--white) !important; }

/* Mobile nav dropdown (off-white bg): links escuros */
@media (max-width: 768px) {
  .nav__links { background: #f5eeee !important; border-bottom-color: rgba(91,30,39,.12); }
  .nav__link { color: var(--gray-800) !important; }
  .nav__link:hover, .nav__link--active { color: var(--white) !important; background: rgba(91,30,39,.1) !important; }
}

/* Seção de diferenciais (section--dark = agora branca): garantir legibilidade total */
.section--dark .feature-card {
  background: var(--gray-100);
  border-color: rgba(91,30,39,.08);
}
.section--dark .feature-card__title { color: var(--gray-800) !important; }
.section--dark .feature-card__desc  { color: var(--gray-600) !important; }

/* Mid-CTA (fundo escuro fixo): botão gold com texto escuro */
.mid-cta .btn--gold-lg { color: #1a0e04 !important; }

/* Specs table no fundo bordô do body: cabeçalho escuro com texto dourado */
.specs-table th { background: rgba(10,6,2,.9) !important; color: var(--gold) !important; }

/* Hero::before radial gradients: ajustados para fundo branco */
.hero::before {
  background:
    radial-gradient(ellipse 70% 70% at 85% 30%, rgba(184,150,12,.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 5% 90%, rgba(91,30,39,.04) 0%, transparent 55%);
}

/* Produto card hover shadow no fundo bordô */
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  border-color: var(--gold);
}

/* LP header: botão WA com texto escuro */
.lp-header .nav__cta-header { color: #1a0e04 !important; }


/* ============================================================
   FIXES v4 — Cards em section--gray e elementos com var(--white) como bg
   ============================================================ */

/* Feature cards em section--gray: fundo era var(--white)=bordô após inversão → forçar branco */
.section--gray .feature-card {
  background: #ffffff !important;
  border: 1px solid rgba(91,30,39,.12) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.07) !important;
}
.section--gray .feature-card__title { color: #1a0e04 !important; }
.section--gray .feature-card__desc  { color: #4b5563 !important; }

/* Feature cards em section--dark (já white após inversão) — reforço */
.section--dark .feature-card {
  background: #f3f4f6 !important;
  border: 1px solid rgba(91,30,39,.08) !important;
}
.section--dark .feature-card__title { color: #1a0e04 !important; }
.section--dark .feature-card__desc  { color: #4b5563 !important; }

/* Qualquer feature-card dentro de seção com fundo claro (body regular, section--gray, section--dark) */
.section--gray p,
.section--dark p { color: #4b5563 !important; }

/* onde-comprar, quem-somos: listas e textos dentro de seções claras */
.section--gray li,
.section--dark li { color: #374151; }

/* Timeline / history items (quem-somos) */
.timeline__content h3,
.history__title { color: #1a0e04 !important; }
.timeline__content p,
.history__desc  { color: #4b5563 !important; }

/* Cards de valor / missão (quem-somos) */
.value-card,
.mission-card {
  background: #ffffff !important;
  border-color: rgba(91,30,39,.1) !important;
}
.value-card__title,
.mission-card__title { color: #1a0e04 !important; }
.value-card__desc,
.mission-card__desc  { color: #4b5563 !important; }

/* Seção de contato (section--dark = agora branca) */
.section--dark .contact-info__label { color: #4b5563 !important; }
.section--dark .contact-info__value { color: #1a0e04 !important; }

/* FAQ items em seções claras */
.section--gray .faq-item,
.section--dark .faq-item {
  background: #ffffff !important;
  border-color: rgba(91,30,39,.1) !important;
}
.section--gray .faq-question,
.section--dark .faq-question { color: #1a0e04 !important; }
.section--gray .faq-answer,
.section--dark .faq-answer  { color: #4b5563 !important; }

/* Onde-comprar: cards de localização */
.section--gray .location-card,
.section--dark .location-card {
  background: #ffffff !important;
  border-color: rgba(91,30,39,.1) !important;
}
.section--gray .location-card__title,
.section--dark .location-card__title { color: #1a0e04 !important; }
.section--gray .location-card__desc,
.section--dark .location-card__desc  { color: #4b5563 !important; }

/* Stats / números em seções claras */
.section--gray .stat__number,
.section--dark .stat__number { color: #5B1E27 !important; }
.section--gray .stat__label,
.section--dark .stat__label  { color: #4b5563 !important; }

/* ---- Specs table em section--gray e section--dark (fundo claro) ---- */
.section--gray .specs-table,
.section--dark .specs-table {
  background: #ffffff !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.08) !important;
}
.section--gray .specs-table th,
.section--dark .specs-table th {
  background: #1a0e04 !important;
  color: var(--gold) !important;
}
.section--gray .specs-table td,
.section--dark .specs-table td {
  color: #1f2937 !important;
  border-bottom-color: #e5e7eb !important;
}
.section--gray .specs-table tr:hover td,
.section--dark .specs-table tr:hover td {
  background: rgba(184,150,12,.06) !important;
}

/* ---- Store card (onde-comprar) em section--dark (agora branca) ---- */
.section--dark .store-card {
  background: #ffffff !important;
  border: 1px solid rgba(91,30,39,.12) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.07) !important;
}
.section--dark .store-card h3,
.section--dark .store-card strong { color: #1a0e04 !important; }
.section--dark .store-card p,
.section--dark .store-card address,
.section--dark .store-card a { color: #4b5563 !important; }

/* ---- Onde-comprar: mapa e info blocks ---- */
.section--dark .map-wrapper,
.section--gray .map-wrapper {
  border: 2px solid rgba(91,30,39,.15) !important;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ---- Contato: form inputs legíveis ---- */
.section--dark input,
.section--dark textarea,
.section--dark select,
.section--gray input,
.section--gray textarea,
.section--gray select {
  background: #ffffff !important;
  color: #1f2937 !important;
  border-color: rgba(91,30,39,.2) !important;
}
.section--dark label,
.section--gray label { color: #374151 !important; }

/* ---- Social proof em fundo claro ---- */
.section--gray .social-proof__number,
.section--dark .social-proof__number { color: #5B1E27 !important; }
.section--gray .social-proof__label,
.section--dark .social-proof__label  { color: #4b5563 !important; }

/* ---- Contato: valores e links visíveis em section--dark (fundo branco) ---- */
.section--dark .contact-info__value,
.section--dark .contact-info__value a { color: #1a0e04 !important; }
.section--dark .contact-info__value a:hover { color: var(--gold-dark) !important; }
.section--dark .contact-info__label { color: #5B1E27 !important; }

/* Ícone do contact-info: fundo visível em seção clara */
.section--dark .contact-info__icon {
  background: rgba(91,30,39,.08) !important;
  border-color: rgba(91,30,39,.12) !important;
}

/* Form inputs no fundo claro */
.section--dark .contact-form {
  background: #f9f5f5 !important;
  border-color: rgba(91,30,39,.12) !important;
}
.section--dark .form-input,
.section--dark .form-select,
.section--dark .form-textarea {
  background: #ffffff !important;
  border-color: rgba(91,30,39,.2) !important;
  color: #1f2937 !important;
}
.section--dark .form-input::placeholder,
.section--dark .form-textarea::placeholder { color: #9ca3af !important; }
.section--dark .form-label { color: #5B1E27 !important; }
.section--dark .form-note { color: #6b7280 !important; }
.section--dark .contact-tab {
  border-color: rgba(91,30,39,.15) !important;
  background: rgba(91,30,39,.04) !important;
  color: #374151 !important;
}

/* ---- Textos inline (section--gray/dark com color no style attr) ---- */
/* strong, span, li, h3 dentro de seções claras precisam de cor explícita */
.section--gray strong,
.section--dark strong { color: inherit !important; }

.section--gray h3,
.section--dark h3 { color: #1a0e04 !important; }

/* Parágrafos com inline color:var(--gray-600) — garantia extra */
.section--gray p[style],
.section--dark p[style] { color: #4b5563 !important; }

/* details/summary (FAQ accordion) em seções claras */
.section--gray details,
.section--dark details {
  background: #ffffff !important;
  border-color: rgba(91,30,39,.12) !important;
}
.section--gray details summary,
.section--dark details summary { color: #1a0e04 !important; }
.section--gray details p,
.section--dark details p { color: #4b5563 !important; }
