/* ============================================
   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; }
}
