/* ============================================
   MADEIREIRA ADRIANNA · CSS Principal
   ============================================ */

:root {
  --cor-primaria: #6B3F1D;
  --cor-secundaria: #C9A57B;
  --cor-acento: #2F7D32;
  --cor-acento-hover: #256628;
  --cor-whatsapp: #25D366;
  --cor-whatsapp-hover: #1ebe5a;
  --cor-texto: #2B2B2B;
  --cor-fundo: #FAF7F2;
  --cor-escura: #3A2412;
  --cor-historia: #1A2942;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--cor-texto);
  background: var(--cor-fundo);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Merriweather', Georgia, serif; line-height: 1.2; }
section[id] { scroll-margin-top: 110px; padding: 90px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow { color: var(--cor-acento); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; font-weight: 600; }
.section-title { font-size: 38px; margin-bottom: 16px; color: var(--cor-primaria); }
.section-subtitle { font-size: 17px; max-width: 720px; margin: 0 auto; color: #555; }

/* Animações scroll-triggered */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* Skip to content (acessibilidade) */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; padding: 8px 16px; background: var(--cor-primaria); color: white; text-decoration: none; }
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.header-top {
  background: #2a1a0f;
  color: rgba(255,255,255,.75);
  padding: 7px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-top .container {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.header-top span { display: inline-flex; align-items: center; gap: 6px; }
.header-top a { color: inherit; text-decoration: none; }
.header-top a:hover { color: var(--cor-secundaria); }
.header-top .separator { color: rgba(255,255,255,.25); margin: 0 6px; }
.header-top .header-wpp { display: inline-flex; align-items: center; gap: 5px; }
.header-top .header-wpp svg { width: 13px; height: 13px; color: var(--cor-whatsapp); flex-shrink: 0; }
.header-main {
  background: var(--cor-escura);
  color: white;
  padding: 14px 0;
}
.header-main .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav-left, .nav-right { min-width: 0; }
.nav-left ul, .nav-right ul { list-style: none; display: flex; gap: 28px; }
.nav-left ul { justify-content: flex-end; }
.nav-right ul { justify-content: flex-start; }
.site-header nav a {
  color: white; text-decoration: none;
  font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
  transition: color .2s; font-weight: 500;
  position: relative; padding: 4px 0;
}
.site-header nav a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--cor-secundaria);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s;
}
.site-header nav a:hover { color: var(--cor-secundaria); }
.site-header nav a:hover::after { transform: scaleX(1); }
.site-header .logo {
  text-align: center; line-height: 1.05;
  text-decoration: none; color: white;
  padding: 0 12px; display: inline-block;
}
.site-header .logo strong {
  display: block; font-size: 22px; letter-spacing: 4px;
  font-family: 'Merriweather', serif;
}
.site-header .logo small {
  display: block; font-size: 10px;
  color: var(--cor-secundaria);
  letter-spacing: 3px; margin-top: 6px;
  position: relative;
}
.site-header .logo small::before,
.site-header .logo small::after {
  content: ''; display: inline-block;
  width: 24px; height: 1px;
  background: var(--cor-secundaria);
  vertical-align: middle; margin: 0 8px; opacity: .6;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 620px;
  margin-top: 110px;
  overflow: hidden;
  background: var(--cor-escura);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.6) 100%);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; color: white;
  padding: 0 24px; z-index: 2;
}
.hero-content h1 { font-size: 52px; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.5); max-width: 900px; }
.hero-content p { font-size: 20px; margin-bottom: 32px; max-width: 700px; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: var(--cor-acento); color: white;
  text-decoration: none; border-radius: 4px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  transition: transform .2s, box-shadow .2s, background .2s;
  font-size: 13px; border: none; cursor: pointer;
  font-family: inherit;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.3); background: var(--cor-acento-hover); }
.btn-cta.whatsapp { background: var(--cor-whatsapp); }
.btn-cta.whatsapp:hover { background: var(--cor-whatsapp-hover); }
.btn-cta svg { flex-shrink: 0; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.9);
  color: var(--cor-escura); border: none;
  width: 54px; height: 54px;
  cursor: pointer; z-index: 3; border-radius: 50%;
  transition: background .25s, transform .25s, box-shadow .25s;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0;
}
.hero-arrow:hover { background: white; transform: translateY(-50%) scale(1.08); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: 2px solid rgba(255,255,255,.6);
  cursor: pointer; padding: 0; transition: background .2s;
}
.hero-dot.active { background: white; }

/* ---------- SELOS ---------- */
.seals {
  background: var(--cor-escura);
  color: white; padding: 28px 0;
  border-top: 3px solid var(--cor-secundaria);
}
.seals .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.seal { display: flex; align-items: center; justify-content: center; gap: 14px; }
.seal-icon { font-size: 32px; }
.seal-text { text-align: left; }
.seal-text strong { display: block; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; }
.seal-text small { color: var(--cor-secundaria); font-size: 12px; }

/* ---------- LINHA DE PRODUTOS ---------- */
#produtos {
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(250,247,242,.6) 100%),
    repeating-linear-gradient(135deg, #fbf8f3 0px, #fbf8f3 60px, #f7f1e8 60px, #f7f1e8 120px);
  position: relative;
}
#produtos::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, white 0%, transparent 12%, transparent 88%, white 100%);
  pointer-events: none;
}
#produtos .container { position: relative; z-index: 1; max-width: 1400px; }
.cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.card-produto {
  background: white;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(107,63,29,.08);
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  position: relative;
  border: 1px solid rgba(201,165,123,.2);
}
.card-produto:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(107,63,29,.18);
  border-color: rgba(201,165,123,.5);
}
.card-produto-img { height: 220px; overflow: hidden; position: relative; }
.card-produto-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card-produto:hover .card-produto-img img { transform: scale(1.08); }
.card-produto-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58,36,18,.5) 100%);
  pointer-events: none;
}

.card-slides { position: relative; width: 100%; height: 100%; }
.card-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; transition: opacity .4s;
}
.card-slide.active { opacity: 1; }
.card-slide-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.92);
  color: var(--cor-escura); border: none;
  width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s, box-shadow .2s;
  padding: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.card-slide-arrow:hover { background: white; transform: translateY(-50%) scale(1.12); box-shadow: 0 4px 14px rgba(0,0,0,.3); }
.card-slide-arrow svg { width: 14px; height: 14px; }
.card-slide-arrow.prev { left: 10px; }
.card-slide-arrow.next { right: 10px; }
.card-slide-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 3;
}
.card-slide-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.7);
  transition: background .2s;
}
.card-slide-dots span.active { background: white; }
.card-produto-badge {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: var(--cor-secundaria);
  color: var(--cor-escura);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Merriweather', serif; font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  z-index: 2;
}
.card-produto-body {
  padding: 16px 20px 18px;
  flex: 1; display: flex; flex-direction: column;
}
.card-produto-body h3 { color: var(--cor-primaria); margin-bottom: 4px; font-size: 19px; line-height: 1.15; }
.card-produto-body > p { font-size: 13px; margin-bottom: 8px; color: #555; line-height: 1.4; }
.card-produto-items {
  list-style: none; margin-bottom: 14px;
  padding-top: 8px;
  border-top: 1px dashed rgba(107,63,29,.2);
  flex: 1;
}
.card-produto-items li {
  font-size: 12.5px; color: #444;
  padding: 1px 0;
  display: flex; align-items: center; gap: 8px;
  line-height: 1.4;
}
.card-produto-items li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cor-acento);
  border-radius: 50%; flex-shrink: 0;
}
.card-produto-body .btn-cta {
  font-size: 12px; padding: 12px 18px;
  justify-content: center; width: 100%;
  border-radius: 8px;
}
.card-produto-body .btn-cta::after { content: '→'; font-size: 16px; transition: transform .3s; }
.card-produto:hover .btn-cta::after { transform: translateX(4px); }

/* ---------- AMBIENTE ---------- */
#ambiente { background: var(--cor-fundo); }
.ambiente-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.ambiente-card {
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  background: white;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.ambiente-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.ambiente-card-img { height: 220px; overflow: hidden; }
.ambiente-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ambiente-card:hover .ambiente-card-img img { transform: scale(1.05); }
.ambiente-card-body { padding: 22px; flex: 1; }
.ambiente-card-body h3 { color: var(--cor-primaria); font-size: 19px; margin-bottom: 8px; }
.ambiente-card-body p { font-size: 14px; color: #555; }
.ambiente-cta { text-align: center; }

/* ---------- SOBRE ---------- */
#sobre { background: white; overflow: hidden; }
#sobre .container {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 64px; align-items: center;
}
#sobre .section-text { font-size: 16px; margin-bottom: 24px; color: #444; line-height: 1.7; }
#sobre .section-title { font-size: 42px; line-height: 1.15; margin-bottom: 18px; }
.sobre-divider {
  width: 60px; height: 3px;
  background: var(--cor-acento);
  margin-bottom: 24px;
}
.sobre-benefits {
  list-style: none; margin: 28px 0 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.sobre-benefits li { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon {
  width: 38px; height: 38px;
  background: rgba(47,125,50,.1);
  color: var(--cor-acento);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: bold;
  flex-shrink: 0;
}
.benefit-text strong { display: block; color: var(--cor-primaria); font-size: 16px; margin-bottom: 2px; }
.benefit-text span { font-size: 14px; color: #666; }

.sobre-visual { position: relative; min-height: 580px; }
.sobre-bg-image {
  position: absolute;
  top: 0; right: -40px; bottom: 0; left: 0;
  background-size: cover; background-position: center;
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(107,63,29,.25);
}
.sobre-bg-image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(58,36,18,.25));
  border-radius: 16px;
}
.sobre-floating-card {
  position: absolute;
  background: white;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  display: flex; gap: 12px;
  align-items: flex-start;
  width: 240px; z-index: 2;
  border: 1px solid rgba(201,165,123,.3);
}
.sobre-floating-card-1 { top: 24px; left: -36px; }
.sobre-floating-card-2 { bottom: 60px; right: -90px; }
.sobre-floating-icon {
  width: 40px; height: 40px;
  background: var(--cor-acento);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: bold;
  flex-shrink: 0;
  font-family: 'Merriweather', serif;
  line-height: 1;
}
.sobre-floating-card h4 {
  color: var(--cor-primaria);
  font-size: 16px; margin-bottom: 4px;
  font-family: 'Merriweather', serif;
}
.sobre-floating-card p { font-size: 13px; color: #555; line-height: 1.5; }

/* ---------- HISTÓRIA ---------- */
#historia {
  background:
    radial-gradient(ellipse at top right, rgba(201,165,123,.15), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(47,125,50,.1), transparent 50%),
    linear-gradient(135deg, #1A2942 0%, #243454 50%, #1A2942 100%);
  color: white;
  position: relative; overflow: hidden;
}
#historia::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,165,123,.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
#historia .container { position: relative; z-index: 1; }
#historia .section-title { color: white; font-size: 42px; letter-spacing: 3px; }
#historia .section-eyebrow { color: var(--cor-secundaria); }
#historia .section-subtitle { color: rgba(255,255,255,.85); }

.historia-layout {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; margin-top: 48px;
  align-items: stretch;
}
.historia-video {
  position: relative;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  background: #000;
  min-height: 480px;
}
.historia-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  cursor: pointer;
}

/* ===== PLAYER CUSTOMIZADO (só play/pause + volume) ===== */
.video-toggle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
  transition: opacity .35s, transform .25s, background .25s;
  padding: 0;
}
.video-toggle:hover { background: white; transform: translate(-50%, -50%) scale(1.05); }
.video-toggle svg { width: 36px; height: 36px; color: var(--cor-primaria); }
.video-toggle .icon-pause { display: none; }
.historia-video.is-playing .video-toggle .icon-play { display: none; }
.historia-video.is-playing .video-toggle .icon-pause { display: block; }
.historia-video.is-playing .video-toggle { opacity: 0; pointer-events: none; }
.historia-video.is-playing:hover .video-toggle { opacity: 1; pointer-events: auto; }

.video-volume-control {
  position: absolute;
  bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.5);
  border-radius: 20px;
  padding: 6px 10px;
  z-index: 4;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity .3s;
}
.video-mute {
  background: none; border: none; cursor: pointer;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  color: white;
}
.video-mute svg { width: 20px; height: 20px; fill: currentColor; }
.video-mute .icon-unmuted { display: none; }
.historia-video.is-muted .video-mute .icon-muted { display: block; }
.historia-video.is-muted .video-mute .icon-unmuted { display: none; }
.historia-video:not(.is-muted) .video-mute .icon-muted { display: none; }
.historia-video:not(.is-muted) .video-mute .icon-unmuted { display: block; }

.video-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 90px; height: 4px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  transition: opacity .2s, width .25s;
}
.video-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.video-volume-slider::-moz-range-thumb {
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
}
.historia-video.is-muted .video-volume-slider { opacity: .4; }

.timeline { max-width: 100%; margin: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute;
  left: 70px; top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--cor-secundaria) 5%, var(--cor-secundaria) 95%, transparent);
  opacity: .35;
}
.timeline-item {
  position: relative;
  display: grid; grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-image-wrapper { position: relative; width: 140px; height: 140px; z-index: 2; }
.timeline-image-wrapper::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cor-secundaria), rgba(201,165,123,.3));
  opacity: .4; filter: blur(10px);
}
.timeline-image {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--cor-secundaria);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.timeline-year-tag {
  position: absolute;
  bottom: -4px; right: -4px;
  background: var(--cor-secundaria);
  color: var(--cor-historia);
  padding: 4px 11px; border-radius: 16px;
  font-family: 'Merriweather', serif; font-weight: 700;
  font-size: 12px; letter-spacing: .5px;
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
  z-index: 3;
}
.timeline-content { padding-left: 4px; }
.timeline-title { font-size: 20px; margin-bottom: 6px; color: white; line-height: 1.2; }
.timeline-content-divider { width: 32px; height: 2px; background: var(--cor-secundaria); margin-bottom: 8px; opacity: .7; }
.timeline-desc { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.55; max-width: 520px; }

/* ---------- PARCEIROS ---------- */
#parceiros { background: white; overflow: hidden; }
.brands-track {
  position: relative; overflow: hidden;
  margin-top: 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  cursor: grab;
  user-select: none;
  touch-action: pan-y; /* permite scroll vertical da página, intercepta horizontal */
}
.brands-track.is-dragging { cursor: grabbing; }
.brands-marquee {
  display: flex; gap: 24px;
  animation: marquee 140s linear infinite;
  width: max-content;
  will-change: transform;
}
.brands-track.is-dragging .brands-marquee { animation-play-state: paused; }
.brands-track img { pointer-events: none; -webkit-user-drag: none; user-drag: none; }
.brand-card {
  flex: 0 0 160px; height: 90px;
  background: white; border: 1px solid #e8e8e8;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  padding: 14px 18px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,165,123,.5);
  box-shadow: 0 8px 24px rgba(107,63,29,.12);
}
.brand-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: .85;
  transition: filter .25s, opacity .25s;
}
.brand-card:hover img { filter: grayscale(0%); opacity: 1; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-160px * 39 - 24px * 39)); }
}

/* ---------- CONTATO ---------- */
#contato { background: var(--cor-fundo); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.contato-form {
  background: white; padding: 26px 28px;
  border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.contato-form h3 { color: var(--cor-primaria); margin-bottom: 16px; font-size: 19px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 12px; margin-bottom: 4px; font-weight: 600; color: #444; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 9px 12px;
  border: 1px solid #ddd; border-radius: 6px;
  font-family: inherit; font-size: 13px;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--cor-acento);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-honeypot { position: absolute; left: -9999px; top: -9999px; visibility: hidden; }
.form-submit {
  background: var(--cor-acento); color: white;
  padding: 12px 24px; border: none; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  text-transform: uppercase; letter-spacing: 1px;
  transition: background .2s;
  font-family: inherit;
  width: 100%;
}
.form-submit:hover:not(:disabled) { background: var(--cor-acento-hover); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-message { margin-top: 14px; padding: 12px; border-radius: 6px; font-size: 13px; display: none; }
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

.contato-info {
  background: var(--cor-primaria); color: white;
  padding: 26px 28px; border-radius: 10px;
}
.contato-info h3 { margin-bottom: 16px; font-size: 19px; }
.contato-info ul { list-style: none; }
.contato-info li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px;
}
.contato-info li:last-child { border-bottom: none; }
.contato-info-icon { font-size: 22px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; min-width: 24px; }
.contato-info-wpp svg { width: 20px; height: 20px; color: var(--cor-whatsapp); }
.contato-info a { color: white; text-decoration: none; }
.contato-info a:hover { text-decoration: underline; }
.contato-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contato-map iframe { width: 100%; height: 440px; border: 0; border-radius: 10px; display: block; }
.contato-video {
  position: relative; border-radius: 10px;
  overflow: hidden; background: #000;
  height: 440px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  cursor: pointer;
}
.contato-video video, .contato-video img, .contato-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  border: 0; display: block;
}
.contato-video-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  color: white;
  pointer-events: none;
  z-index: 3;
}
.contato-video-label strong { display: block; font-size: 14px; margin-bottom: 2px; font-family: 'Merriweather', serif; }
.contato-video-label small { font-size: 12px; color: rgba(255,255,255,.75); }
/* Player customizado dentro do contato-video (mesmo estilo do historia-video) */
.contato-video .video-toggle { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.contato-video .video-volume-control { bottom: 50px; }
.contato-video.is-playing .video-toggle { opacity: 0; pointer-events: none; }
.contato-video.is-playing:hover .video-toggle { opacity: 1; pointer-events: auto; }
.contato-video .video-toggle .icon-pause { display: none; }
.contato-video.is-playing .video-toggle .icon-play { display: none; }
.contato-video.is-playing .video-toggle .icon-pause { display: block; }
.contato-video .video-mute .icon-unmuted { display: none; }
.contato-video.is-muted .video-mute .icon-muted { display: block; }
.contato-video.is-muted .video-mute .icon-unmuted { display: none; }
.contato-video:not(.is-muted) .video-mute .icon-muted { display: none; }
.contato-video:not(.is-muted) .video-mute .icon-unmuted { display: block; }
.contato-video.is-muted .video-volume-slider { opacity: .4; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--cor-escura); color: white; padding: 56px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 0.9fr 1.4fr 1.5fr;
  gap: 28px; margin-bottom: 36px;
}
.footer-brand h4 { font-size: 22px; margin-bottom: 8px; color: white; letter-spacing: 2px; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: 14px; max-width: 280px; }
.footer-grid h4 { margin-bottom: 14px; color: var(--cor-secundaria); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Inter', sans-serif; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; font-size: 14px; }
.footer-wpp { display: inline-flex; align-items: center; gap: 6px; }
.footer-wpp svg { width: 14px; height: 14px; color: var(--cor-whatsapp); flex-shrink: 0; }
.footer-email { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; }
.footer-email > span { flex-shrink: 0; }
.footer-email a { word-break: keep-all; overflow-wrap: normal; font-size: 12.5px; white-space: nowrap; }
.footer-grid a { color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s; }
.footer-grid a:hover { color: var(--cor-secundaria); }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  color: white; text-decoration: none;
  transition: background .2s, transform .2s, color .2s;
}
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; }
.footer-social a:hover { transform: translateY(-2px); }
.footer-social a[data-social="instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.footer-social a[data-social="facebook"]:hover { background: #1877F2; }
.footer-social a[data-social="whatsapp"]:hover { background: var(--cor-whatsapp); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,.6);
}

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--cor-whatsapp); color: white;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  z-index: 50; box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 34px; height: 34px; fill: white; }
.whatsapp-fab::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1200px) {
  .nav-left ul, .nav-right ul { gap: 18px; }
  .site-header nav a { font-size: 12px; letter-spacing: 1px; }
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sobre-floating-card { width: 220px; }
  .sobre-floating-card-1 { left: -16px; top: 24px; }
  .sobre-floating-card-2 { right: -50px; bottom: 40px; }
  .historia-layout { gap: 32px; }
}
@media (max-width: 900px) {
  .header-top .container { flex-direction: column; gap: 4px; text-align: center; font-size: 11px; }
  .header-main .container { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .nav-left ul, .nav-right ul { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero { margin-top: 180px; height: 540px; }
  .hero-content h1 { font-size: 34px; }

  #sobre .container { grid-template-columns: 1fr; gap: 40px; }
  #sobre .section-title { font-size: 32px; }
  .sobre-visual { min-height: 380px; display: flex; flex-direction: column; gap: 12px; }
  .sobre-bg-image { right: 0; width: 100%; position: relative; min-height: 240px; }
  .sobre-floating-card { position: static; width: auto; margin-top: 16px; }
  .sobre-floating-card-1, .sobre-floating-card-2 { left: auto; right: auto; top: auto; bottom: auto; }

  .ambiente-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .contato-bottom { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  section[id] { scroll-margin-top: 180px; padding: 70px 0; }

  .historia-layout { grid-template-columns: 1fr; gap: 32px; }
  .historia-video { position: static; aspect-ratio: 16/9; max-height: none; height: 300px; min-height: 0; }

  .timeline::before { left: 60px; }
  .timeline-item { grid-template-columns: 120px 1fr; gap: 24px; }
  .timeline-image-wrapper { width: 120px; height: 120px; }
  .timeline-title { font-size: 18px; }
}
@media (max-width: 600px) {
  .seals .container { grid-template-columns: 1fr; gap: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title, #historia .section-title { font-size: 28px; }
  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 15px; }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow.prev { left: 8px; }
  .hero-arrow.next { right: 8px; }

  .timeline { padding-left: 0; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 16px; justify-items: center; text-align: center; }
  .timeline-image-wrapper { width: 140px; height: 140px; }
  .timeline-content { padding-left: 0; }
  .timeline-content-divider { margin: 12px auto; }
}

/* Print styles */
@media print {
  .whatsapp-fab, .hero-arrow, .hero-dots, .card-slide-arrow, .card-slide-dots, .site-header { display: none !important; }
  .hero { margin-top: 0; }
  body { color: black; background: white; }
}

/* ============================================
   V2 Visual Refresh
   Mantem conteudo e funcionalidades, muda a apresentacao.
   ============================================ */

:root {
  --cor-primaria: #4B2F1B;
  --cor-secundaria: #D2AF74;
  --cor-acento: #2F6F3E;
  --cor-acento-hover: #245832;
  --cor-whatsapp: #20C35A;
  --cor-whatsapp-hover: #18A94C;
  --cor-texto: #27221D;
  --cor-fundo: #F6F0E6;
  --cor-escura: #21160F;
  --cor-historia: #132820;
  --cor-surface: #FFFDF8;
  --cor-surface-2: #EFE3D0;
  --cor-line: rgba(75, 47, 27, .14);
  --shadow-sm: 0 10px 28px rgba(42, 28, 17, .08);
  --shadow-md: 0 22px 52px rgba(42, 28, 17, .16);
  --shadow-lg: 0 32px 76px rgba(22, 15, 10, .28);
}

body {
  background:
    linear-gradient(180deg, #fbf7ef 0%, var(--cor-fundo) 42%, #f8f2e9 100%);
  color: var(--cor-texto);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .42;
  background-image:
    linear-gradient(rgba(75, 47, 27, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 47, 27, .035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.container { max-width: 1240px; }

section[id] { padding: 112px 0; }

.section-header {
  max-width: 820px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  color: var(--cor-acento);
  font-size: 12px;
  letter-spacing: 3px;
}

.section-title {
  color: var(--cor-primaria);
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: 0;
}

.section-subtitle {
  color: rgba(39, 34, 29, .72);
  font-size: 18px;
  line-height: 1.75;
}

.site-header {
  box-shadow: none;
  background: transparent;
}

.header-top {
  background: #17100B;
  color: rgba(255,255,255,.76);
  border-bottom: 1px solid rgba(210, 175, 116, .16);
}

.header-main {
  background: rgba(33, 22, 15, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(210, 175, 116, .18);
  padding: 12px 0;
}

.site-header nav a {
  letter-spacing: 1.1px;
  color: rgba(255,255,255,.82);
}

.site-header .logo {
  padding: 8px 22px 10px;
  border: 1px solid rgba(210, 175, 116, .42);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.site-header .logo strong {
  font-size: 18px;
  letter-spacing: 3px;
}

.site-header .logo small::before,
.site-header .logo small::after { display: none; }

.hero {
  min-height: 720px;
  height: min(84vh, 820px);
  margin-top: 104px;
  isolation: isolate;
}

.hero-slide::after {
  background:
    linear-gradient(90deg, rgba(18, 11, 7, .9) 0%, rgba(18, 11, 7, .66) 42%, rgba(18, 11, 7, .18) 78%),
    linear-gradient(180deg, rgba(18, 11, 7, .12) 0%, rgba(18, 11, 7, .64) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(210, 175, 116, .22) 0 1px, transparent 1px) 9% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, rgba(210, 175, 116, .16) 0 1px, transparent 1px) 91% 0 / 1px 100% no-repeat;
}

.hero-content {
  align-items: flex-start;
  text-align: left;
  max-width: 1240px;
  margin: 0 auto;
  left: 50%;
  right: auto;
  width: min(100%, 1240px);
  transform: translateX(-50%);
  padding: 80px 24px 96px;
}

.hero-content::before {
  content: 'DESDE 1991';
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(210, 175, 116, .46);
  border-radius: 999px;
  color: #F7D58D;
  background: rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.hero-content h1 {
  max-width: 770px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  text-shadow: 0 18px 44px rgba(0,0,0,.55);
}

.hero-content p {
  max-width: 570px;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.btn-cta,
.form-submit {
  min-height: 48px;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(32, 195, 90, .26);
}

.btn-cta:hover,
.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(32, 195, 90, .3);
}

.hero-arrow {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}

.hero-arrow:hover {
  background: rgba(255,255,255,.22);
  color: white;
}

/* Sem setas: navegação só por bolinhas */
.hero-arrow { display: none !important; }

/* Dots redondos (bolinhas), logo acima da faixa de selos */
.hero-dots {
  bottom: 70px;
  gap: 12px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.5);
  box-shadow: 0 1px 4px rgba(0,0,0,.35);
}

.hero-dot.active {
  background: var(--cor-secundaria);
  transform: scale(1.15);
}

.seals {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 48px));
  margin: -54px auto 0;
  padding: 0;
  color: var(--cor-texto);
  background: transparent;
  border: 0;
}

.seals .container {
  padding: 0;
  max-width: none;
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 253, 248, .96);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(210, 175, 116, .28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.seal {
  justify-content: flex-start;
  padding: 24px;
  border-right: 1px solid var(--cor-line);
}

.seal:last-child { border-right: 0; }

.seal-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F2E4CF;
  color: var(--cor-primaria);
  font-size: 0;
  flex: 0 0 auto;
}

.seal-icon::before {
  content: 'OK';
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.seal:nth-child(1) .seal-icon::before { content: '10x'; }
.seal:nth-child(2) .seal-icon::before { content: '>>'; }
.seal:nth-child(3) .seal-icon::before { content: '*'; font-size: 18px; }
.seal:nth-child(4) .seal-icon::before { content: '51'; }

.seal-text strong {
  color: var(--cor-primaria);
  letter-spacing: .6px;
}

.seal-text small {
  color: rgba(39,34,29,.62);
}

#produtos {
  background:
    linear-gradient(180deg, #F6F0E6 0%, #FFFDF8 38%, #F5EDE1 100%);
  padding-top: 128px;
}

#produtos::before {
  background:
    radial-gradient(circle at 15% 8%, rgba(210, 175, 116, .22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(47, 111, 62, .12), transparent 24%);
}

.cards-grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.card-produto {
  grid-column: span 3;
  border-radius: 20px;
  background: var(--cor-surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(75,47,27,.1);
}

.card-produto:nth-child(1),
.card-produto:nth-child(6) {
  grid-column: span 6;
}

.card-produto:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.card-produto-img {
  height: 248px;
}

.card-produto:nth-child(1) .card-produto-img,
.card-produto:nth-child(6) .card-produto-img {
  height: 310px;
}

.card-produto-img::after {
  background: linear-gradient(180deg, transparent 40%, rgba(24,16,10,.72) 100%);
}

.card-produto-badge {
  top: auto;
  right: 18px;
  bottom: 16px;
  width: auto;
  height: auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--cor-primaria);
  font-size: 13px;
}

.card-produto-body {
  padding: 24px;
}

.card-produto-body h3 {
  font-size: 22px;
  letter-spacing: 0;
}

.card-produto-body > p {
  color: rgba(39,34,29,.66);
  font-size: 14px;
}

.card-produto-items {
  border-top: 1px solid rgba(75,47,27,.12);
  padding-top: 14px;
}

.card-produto-items li {
  color: rgba(39,34,29,.76);
}

.card-slide-arrow {
  background: rgba(255,255,255,.16);
  color: white;
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: none;
}

.card-slide-arrow:hover {
  background: rgba(255,255,255,.28);
}

#ambiente {
  background: #21160F;
  color: white;
}

#ambiente .section-title { color: white; }
#ambiente .section-subtitle { color: rgba(255,255,255,.72); }
#ambiente .section-eyebrow { color: var(--cor-secundaria); }

.ambiente-grid {
  gap: 20px;
}

.ambiente-card {
  min-height: 360px;
  position: relative;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 22px 46px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.1);
}

.ambiente-card-img {
  position: absolute;
  inset: 0;
  height: auto;
}

.ambiente-card-img img {
  filter: brightness(.72) contrast(1.08) saturate(.92);
}

.ambiente-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.36) 42%, rgba(0,0,0,.88) 100%),
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.22) 58%, rgba(0,0,0,.46) 100%);
}

.ambiente-card-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.44) 100%);
}

.ambiente-card-body h3 {
  color: white;
  font-size: 24px;
  text-shadow: 0 3px 18px rgba(0,0,0,.75);
}

.ambiente-card-body p {
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 14px rgba(0,0,0,.75);
}

#sobre {
  background:
    linear-gradient(90deg, #FFFDF8 0 54%, #EFE3D0 54% 100%);
}

#sobre .container {
  grid-template-columns: .88fr 1.12fr;
}

#sobre .section-title {
  font-size: clamp(36px, 4.8vw, 60px);
}

.sobre-divider {
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, var(--cor-secundaria), transparent);
}

.benefit-icon {
  border-radius: 50%;
  background: #E7F1E7;
}

.sobre-bg-image {
  right: 0;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.sobre-bg-image::before {
  border-radius: 28px;
  z-index: 1;
}

/* Vídeo em loop (gif-like) no lugar da foto da fachada */
.sobre-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
}

.sobre-floating-card {
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.sobre-floating-card-1 {
  top: 36px;
  left: -34px;
}

.sobre-floating-card-2 {
  right: -30px;
}

#historia {
  background:
    linear-gradient(135deg, #132820 0%, #1F3A2D 52%, #111D1A 100%);
}

#historia::before {
  opacity: .8;
  background-image:
    linear-gradient(rgba(210,175,116,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210,175,116,.08) 1px, transparent 1px);
  background-size: 64px 64px;
}

#historia .section-title {
  letter-spacing: 0;
}

.historia-layout {
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
}

.historia-video {
  border-radius: 26px;
  box-shadow: 0 30px 74px rgba(0,0,0,.42);
  border: 1px solid rgba(210,175,116,.24);
}

.timeline::before {
  left: 58px;
  background: linear-gradient(180deg, transparent, rgba(210,175,116,.8) 8%, rgba(210,175,116,.32) 94%, transparent);
}

.timeline-item {
  grid-template-columns: 116px 1fr;
  gap: 26px;
}

.timeline-image-wrapper {
  width: 116px;
  height: 116px;
}

.timeline-image {
  border-width: 2px;
  object-position: center;
}

.timeline-title {
  font-size: 22px;
}

#parceiros {
  background: #FFFDF8;
}

.brand-card {
  border-radius: 18px;
  border-color: rgba(75,47,27,.12);
  box-shadow: var(--shadow-sm);
}

.brand-card:hover {
  border-color: rgba(210,175,116,.7);
  box-shadow: var(--shadow-md);
}

#contato {
  background:
    linear-gradient(180deg, #F5EDE1 0%, #FFFDF8 100%);
}

.contato-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.contato-form,
.contato-info {
  height: 100%;
}

.contato-form,
.contato-info,
.contato-map iframe,
.contato-video {
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.contato-form {
  padding: 34px;
  border: 1px solid rgba(75,47,27,.1);
}

.contato-form h3,
.contato-info h3 {
  font-size: 26px;
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 46px;
  border-radius: 12px;
  border-color: rgba(75,47,27,.16);
  background: #FFFCF7;
}

.form-group textarea {
  min-height: 120px;
}

.contato-info {
  background:
    linear-gradient(145deg, #4B2F1B 0%, #2A1B12 100%);
  padding: 34px;
}

.contato-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.contato-map,
.contato-video {
  width: 100%;
  height: 480px;
}

.contato-map iframe,
.contato-video {
  height: 480px;
}

.contato-map iframe {
  height: 100%;
}

.site-footer {
  background:
    linear-gradient(180deg, #21160F 0%, #130D09 100%);
  border-top: 1px solid rgba(210,175,116,.18);
}

.footer-social a,
.whatsapp-fab {
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.whatsapp-fab {
  width: 68px;
  height: 68px;
}

@media (max-width: 1200px) {
  .card-produto,
  .card-produto:nth-child(1),
  .card-produto:nth-child(6) {
    grid-column: span 4;
  }
}

@media (max-width: 900px) {
  section[id] { padding: 84px 0; }

  .hero {
    margin-top: 178px;
    min-height: 620px;
    height: auto;
  }

  .hero-content {
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
    justify-content: flex-end;
    min-height: 620px;
  }

  .hero-content h1,
  .hero-content p {
    width: min(100%, calc(100vw - 36px));
  }

  .hero-content p {
    max-width: 330px;
  }

  .seals {
    width: min(100% - 24px, 720px);
    margin-top: -34px;
  }

  .seals .container {
    grid-template-columns: 1fr 1fr;
  }

  .seal:nth-child(2) { border-right: 0; }
  .seal:nth-child(1),
  .seal:nth-child(2) { border-bottom: 1px solid var(--cor-line); }

  .card-produto,
  .card-produto:nth-child(1),
  .card-produto:nth-child(6) {
    grid-column: span 6;
  }

  .card-produto:nth-child(1) .card-produto-img,
  .card-produto:nth-child(6) .card-produto-img {
    height: 248px;
  }

  #sobre {
    background: #FFFDF8;
  }

  .historia-layout,
  .contato-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }

  .hero {
    margin-top: 184px;
    min-height: 560px;
  }

  .hero-content {
    min-height: 560px;
    padding: 58px 18px 82px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .seals .container {
    grid-template-columns: 1fr;
  }

  .seal {
    border-right: 0;
    border-bottom: 1px solid var(--cor-line);
  }

  .seal:last-child {
    border-bottom: 0;
  }

  .card-produto,
  .card-produto:nth-child(1),
  .card-produto:nth-child(6) {
    grid-column: span 12;
  }

  .ambiente-card {
    min-height: 320px;
  }

  .contato-form,
  .contato-info {
    padding: 24px;
  }

  .contato-map iframe,
  .contato-video {
    height: 360px;
  }
}

/* ============================================
   Ajustes solicitados 2026-05-27
   ============================================ */

body::before,
.hero::before {
  display: none;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.section-header,
.section-subtitle {
  width: 100%;
}

.site-header .logo {
  width: 238px;
  height: 74px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-slide::after {
  background: none;
}

.hero-slide.active,
.hero-video {
  opacity: 1 !important;
  filter: none !important;
}

.hero-content h1,
.hero-content p {
  text-shadow: 0 4px 22px rgba(0,0,0,.72);
}

.seals {
  width: 100%;
  margin: -54px 0 0;
  padding: 0 24px;
  background: linear-gradient(180deg, transparent 0 54px, var(--cor-fundo) 54px 100%);
}

.seals .container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.seal-icon {
  font-size: 31px;
  background: #F2E4CF;
}

.seal-icon::before {
  content: none !important;
}

.cards-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.card-produto,
.card-produto:nth-child(1),
.card-produto:nth-child(6) {
  grid-column: span 3;
}

.card-produto-img,
.card-produto:nth-child(1) .card-produto-img,
.card-produto:nth-child(6) .card-produto-img {
  height: 300px;
}

.card-produto-badge {
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.card-produto-body {
  min-height: 350px;
}

#ambiente {
  background: #21160F;
}

.ambiente-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ambiente-card {
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: var(--cor-surface);
  border: 1px solid rgba(75,47,27,.1);
  box-shadow: var(--shadow-sm);
}

.ambiente-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.ambiente-card-img {
  position: relative;
  inset: auto;
  height: 300px;
  overflow: hidden;
  background: #efe6d8;
}

.ambiente-card-img img {
  filter: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ambiente-card-img::after {
  display: none;
}

.ambiente-card-body {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 26px 28px 30px;
  background: var(--cor-surface);
  flex: 1;
}

.ambiente-card-body h3 {
  color: var(--cor-primaria);
  font-size: 24px;
  margin-bottom: 8px;
  text-shadow: none;
}

.ambiente-card-body p {
  color: rgba(39,34,29,.72);
  font-size: 15px;
  line-height: 1.55;
  text-shadow: none;
}

.brand-card {
  flex: 0 0 auto;
  min-width: 170px;
  height: 70px;
  padding: 0 28px;
  border-radius: 999px;
  background: #FFFDF8;
}

.brand-card span {
  color: var(--cor-primaria);
  font-family: 'Merriweather', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-card:hover span {
  color: var(--cor-acento);
}

@media (max-width: 1200px) {
  .card-produto,
  .card-produto:nth-child(1),
  .card-produto:nth-child(6) {
    grid-column: span 4;
  }
}

@media (max-width: 900px) {
  .site-header .logo {
    width: 220px;
    height: 68px;
    margin: 0 auto;
  }

  .seals {
    width: 100%;
    padding: 0 12px;
  }

  .card-produto,
  .card-produto:nth-child(1),
  .card-produto:nth-child(6) {
    grid-column: span 6;
  }

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

@media (max-width: 600px) {
  .site-header nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-header {
    max-width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.65;
    margin-left: auto;
    margin-right: auto;
  }

  .cards-grid {
    display: block;
  }

  .card-produto {
    width: 100%;
    margin-bottom: 24px;
  }

  .card-produto,
  .card-produto:nth-child(1),
  .card-produto:nth-child(6) {
    grid-column: span 12;
  }

  .card-produto-img,
  .card-produto:nth-child(1) .card-produto-img,
  .card-produto:nth-child(6) .card-produto-img,
  .ambiente-card-img {
    height: 260px;
  }

  .card-produto-body {
    min-height: 0;
  }
}

/* ============================================
   Ajustes finos solicitados 2026-05-27
   ============================================ */

.header-top {
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255,255,255,.88);
}

.header-top .container {
  max-width: 1320px;
}

.header-top .header-wpp svg {
  width: 16px;
  height: 16px;
}

.hero {
  background: #21160F;
}

.hero-video {
  width: 104%;
  height: 104%;
  left: -2%;
  top: -2%;
  object-position: center 62%;
  transform: scale(1.02);
  transform-origin: center;
}

.hero-slide:nth-child(3) {
  background-position: center 74%;
}

.hero-slide:nth-child(4) {
  background-position: center 24%;
}

.seals {
  margin-bottom: -54px;
  background: transparent;
}

#produtos {
  margin-top: 0;
  padding-top: 166px;
  background:
    radial-gradient(circle at 15% 8%, rgba(210, 175, 116, .22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(47, 111, 62, .12), transparent 24%),
    linear-gradient(180deg, #FAF7F2 0%, #FAF7F2 100%);
}

#produtos::before {
  display: none;
}

#produtos .container {
  max-width: min(1880px, calc(100% - 72px));
}

.cards-grid {
  gap: 30px;
}

.card-produto-img,
.card-produto:nth-child(1) .card-produto-img,
.card-produto:nth-child(6) .card-produto-img {
  height: 320px;
}

.card-produto-body {
  min-height: 0;
  padding: 26px 30px 30px;
}

.card-produto-items {
  flex: 0 0 auto;
  margin-bottom: 22px;
}

.card-produto-body .btn-cta {
  margin-top: 0;
}

.historia-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.historia-video {
  justify-self: center;
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  min-height: 0;
  height: auto;
  background: #132820;
}

.historia-video video {
  object-fit: cover;
  object-position: center;
}

.contato-video {
  align-self: start;
  justify-self: stretch;
  width: 100%;
  aspect-ratio: auto;
  height: 480px;
  background: #21160F;
}

.contato-video video,
.contato-video img,
.contato-video iframe {
  object-fit: cover;
  object-position: center 42%;
}

@media (max-width: 900px) {
  .header-top {
    font-size: 13px;
    padding: 8px 0;
  }

  .hero-video {
    width: 112%;
    height: 112%;
    left: -6%;
    top: -6%;
  }

  #produtos {
    padding-top: 132px;
  }

  #produtos .container {
    max-width: 100%;
  }

  .historia-layout {
    grid-template-columns: 1fr;
  }

  .historia-video {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 9 / 16;
    height: auto;
    min-height: 0;
  }

  .contato-video {
    width: 100%;
    height: 420px;
  }

  .contato-map {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .header-top {
    font-size: 12px;
  }

  #produtos {
    padding-top: 120px;
  }

  #produtos .container {
    padding: 0 18px;
  }

  .card-produto-img,
  .card-produto:nth-child(1) .card-produto-img,
  .card-produto:nth-child(6) .card-produto-img,
  .ambiente-card-img {
    height: 280px;
  }

  .card-produto-body {
    padding: 24px 22px 28px;
  }
}

/* Hero com banners finais do Drive */
.hero-banner-carousel {
  background: #160f0a;
  width: 100%;
  /* Banner 16:9 em telas normais; em telas largas limita a altura para não ficar alto demais.
     Quando o designer entregar arte panorâmica (ver REGRAS: ~2400x1000), trocar object-fit para cover. */
  height: min(56.25vw, 70vh, 660px);
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
}

.hero-banner-carousel::before,
.hero-banner-carousel .hero-slide::after {
  display: none;
}

.hero-banner-carousel .hero-slide {
  background: #160f0a;
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .hero-banner-carousel {
    height: calc(100vw * .5625);
    min-height: 220px;
  }

  .hero-banner-img {
    object-fit: contain;
    object-position: center;
  }
}

/* ===== TESTE: hero de banner único panorâmico 2400x1000 (2.4:1) ===== */
.hero-banner-single {
  width: 100%;
  aspect-ratio: 12 / 5;   /* = 2.4:1, mesma proporção da arte */
  height: auto;
  min-height: 0;
  max-height: none;
}
.hero-banner-single .hero-banner-img {
  object-fit: cover;       /* container = 2.4:1 = arte: preenche exato, sem barra e sem corte */
  object-position: center;
}

/* ============================================================
   MOBILE REFRESH (2026-06-05): hambúrguer, header compacto,
   títulos sem estourar, selos 2x2, seção Sobre empilhada
   ============================================================ */

/* Evita scroll/alargamento horizontal causado pela gaveta off-canvas (translateX 100%) */
html, body { overflow-x: hidden; }

/* Hambúrguer e gaveta: ocultos no desktop */
.nav-toggle { display: none; }
.mobile-menu, .mobile-menu-overlay { display: none; }

@media (max-width: 900px) {
  /* ---------- HEADER COMPACTO ---------- */
  .header-top { padding: 6px 0; font-size: 11px; }
  .header-top .container { justify-content: center; gap: 10px; }
  .header-top .container > span:first-child { display: none; } /* esconde endereço longo (fica no rodapé/contato) */
  .header-main { padding: 8px 0; }
  .header-main .container { display: flex; align-items: center; justify-content: center; }
  /* sem hambúrguer no mobile: logo centralizada, navegação por scroll/FAB */
  .nav-left, .nav-right, .nav-toggle, .mobile-menu, .mobile-menu-overlay { display: none !important; }
  .logo { margin: 0 auto !important; }
  .logo img { height: 46px; width: auto; }

  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* gaveta deslizante */
  .mobile-menu {
    display: flex; flex-direction: column; gap: 2px;
    position: fixed; top: 0; right: 0; z-index: 200;
    width: min(80vw, 320px); height: 100vh; padding: 84px 22px 24px;
    background: var(--cor-escura); box-shadow: -12px 0 40px rgba(0,0,0,.45);
    transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s;
    overflow-y: auto;
  }
  body:not(.menu-open) .mobile-menu { display: none; } /* fora do layout quando fechada: evita overflow horizontal */
  body.menu-open .mobile-menu { display: flex; transform: translateX(0); visibility: visible; }
  .mobile-menu a { color: #fff; text-decoration: none; font-size: 18px; padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .mobile-menu-cta { margin-top: 18px; background: var(--cor-whatsapp); color: #fff; border-radius: 12px; text-align: center; border: 0 !important; font-weight: 700; padding: 15px; }

  .mobile-menu-overlay {
    display: block; position: fixed; inset: 0; z-index: 150;
    background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  body.menu-open .mobile-menu-overlay { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }

  /* ---------- HERO com mais presença (estilo referência) ---------- */
  .hero { margin-top: 84px; }
  .hero-banner-carousel.hero-banner-single { aspect-ratio: auto !important; height: 215px !important; }
  .hero-banner-single .hero-banner-img { object-fit: cover !important; object-position: center !important; }
  .hero-dots { bottom: 12px !important; gap: 7px !important; }
  .hero-dot { width: 7px !important; height: 7px !important; }

  /* ---------- RESPIRO: seções arejadas, cabeçalhos centrados ---------- */
  #produtos, #ambiente, #sobre, #historia, #parceiros, #contato { padding-top: 46px !important; padding-bottom: 46px !important; }
  .section-header { margin-bottom: 30px !important; text-align: center !important; }
  .section-eyebrow { letter-spacing: 2.5px !important; font-size: 11px !important; }
  .section-title { font-size: 27px !important; line-height: 1.22 !important; }
  .section-subtitle { font-size: 14px !important; line-height: 1.6 !important; max-width: 340px; margin-left: auto !important; margin-right: auto !important; }

  /* ---------- TÍTULOS sem estourar ---------- */
  .section-title { font-size: 26px; line-height: 1.2; overflow-wrap: break-word; }
  .section-subtitle, .section-text { font-size: 15px; }
  .section-header { padding: 0 4px; }

  /* ---------- LOGO centralizada (vence .site-header .logo do V2) ---------- */
  .site-header .logo { width: auto !important; height: 46px !important; margin: 0 auto !important; }
  .site-header .logo img { height: 46px !important; width: auto !important; }

  /* ---------- SELOS: faixa compacta logo abaixo do hero (sem cobrir o banner) ---------- */
  .seals { box-sizing: border-box !important; width: calc(100vw - 24px) !important; max-width: 440px !important; margin: 14px auto 0 !important; padding: 0 !important; }
  .seals .container { grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important; gap: 0 !important; border-radius: 16px !important; }
  .seal { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; text-align: center !important; padding: 13px 6px !important; border: 0 !important; min-width: 0 !important; gap: 6px !important; }
  .seal:nth-child(1), .seal:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,.06) !important; }
  .seal:nth-child(odd) { border-right: 1px solid rgba(0,0,0,.06) !important; }
  .seal-icon { width: 36px !important; height: 36px !important; font-size: 20px !important; }
  .seal-text { text-align: center !important; min-width: 0 !important; }
  .seal-text strong { font-size: 11px !important; letter-spacing: .2px !important; white-space: normal !important; overflow-wrap: break-word !important; line-height: 1.2 !important; }
  .seal-text small { font-size: 10px !important; white-space: normal !important; }

  /* ---------- CATEGORIAS: tiles premium (estilo referência: macios, centrados, arejados) ---------- */
  .cards-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .card-produto { width: auto !important; margin: 0 !important; grid-column: auto !important; border-radius: 20px !important; display: flex !important; flex-direction: column !important; background: #fff !important; box-shadow: 0 12px 30px rgba(75,47,27,.10) !important; border: 1px solid rgba(75,47,27,.06) !important; overflow: hidden !important; }
  .card-produto-img,
  .card-produto:nth-child(1) .card-produto-img,
  .card-produto:nth-child(6) .card-produto-img { height: 132px !important; }
  /* sem setas/dots no mobile: só a capa, visual limpo */
  .card-slide-arrow, .card-slide-dots { display: none !important; }
  .card-produto-body { padding: 16px 14px 18px !important; display: flex !important; flex-direction: column !important; flex: 1 !important; align-items: center !important; text-align: center !important; }
  .card-produto-body h3 { font-size: 15px !important; margin-bottom: 6px !important; line-height: 1.25 !important; }
  .card-produto-body p { font-size: 11.5px !important; margin-bottom: 14px !important; line-height: 1.4 !important; color: #7a726a !important; }
  /* lista de itens some no mobile (limpeza) */
  .card-produto-items { display: none !important; }
  .card-produto .btn-cta { margin-top: auto !important; font-size: 12px !important; padding: 12px 8px !important; width: 100% !important; border-radius: 12px !important; }
  /* badge do número mais discreto */
  .card-produto-badge { width: 30px !important; height: 30px !important; font-size: 12px !important; }

  /* ---------- CONTATO: mapa maior em cima, vídeo embaixo ---------- */
  .contato-bottom { display: grid !important; grid-template-columns: 1fr !important; gap: 16px !important; }
  .contato-map, .contato-map iframe { width: 100% !important; height: 340px !important; }
  .contato-video { width: 100% !important; height: 300px !important; }

  /* ---------- SOBRE: 1 coluna, vídeo em cima, cards estáticos embaixo ---------- */
  #sobre .container { grid-template-columns: 1fr !important; gap: 28px !important; }
  #sobre .section-title { font-size: 26px !important; }
  .sobre-visual { min-height: 0 !important; display: flex; flex-direction: column; gap: 14px; }
  .sobre-bg-image { position: relative; right: 0; left: 0; width: 100%; height: 230px; min-height: 0; }
  .sobre-floating-card, .sobre-floating-card-1, .sobre-floating-card-2 { position: static; transform: none; width: 100%; inset: auto; }
}
