/* ===== Evidence Design — Landing Page (captura de leads) ===== */

:root {
  --wine: #640000;
  --wine-dark: #4a0000;
  --wine-light: #7a1414;
  --wa-green: #2CC96B;
  --wa-green-dark: #128C7E;
  --black: #111111;
  --off-black: #1a1a1a;
  --white: #ffffff;
  --off-white: #f7f5f2;
  --gray: #6b6b6b;
  --gray-light: #e4e0da;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1180px;
}

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

html {
  background: var(--black);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  color: var(--off-black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.0);
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.94);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header img.logo {
  height: 40px;
  width: auto;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.88) 100%);
  z-index: 1;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow { color: var(--white); opacity: 0.85; margin-bottom: 18px; }

.hero h1 {
  font-size: clamp(34px, 6vw, 62px);
  max-width: 820px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: #e8c9a0;
}

.hero p.lead {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 580px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}

.offer-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: #f2e2c8;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  padding: 20px 42px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(18, 140, 126, 0.55);
}

.btn-cta svg { width: 22px; height: 22px; flex-shrink: 0; }

.hero-addr {
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  max-width: 460px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.hero-addr svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: #e8c9a0; }

.hero .trust-line {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.stars { color: #e8c9a0; letter-spacing: 2px; font-size: 15px; }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: scrollcue 1.6s infinite;
}

@keyframes scrollcue {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 10px); }
  100% { opacity: 0; }
}

/* ===== Section generic ===== */
section { padding: 80px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-top: 12px;
  color: var(--black);
}

.section-head p {
  margin-top: 14px;
  color: var(--gray);
  font-size: 16px;
}

/* ===== Diferenciais ===== */
.diferenciais {
  background: var(--off-white);
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.dif-card {
  text-align: center;
  padding: 0 12px;
}

.dif-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
}

.dif-icon svg { width: 26px; height: 26px; }

.dif-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--black);
}

.dif-card p {
  font-size: 15px;
  color: var(--gray);
}

/* ===== Gallery (carrossel) ===== */
.gallery-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
}

.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-grid.dragging { cursor: grabbing; scroll-behavior: auto; }
.gallery-grid.dragging .gallery-item { pointer-events: none; }

.gallery-item {
  flex: 0 0 calc((100% - 3 * 16px) / 4);
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 6px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  color: var(--black);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.gallery-arrow:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}

/* ===== Depoimentos ===== */
.depoimentos { background: var(--black); color: var(--white); }

.depoimentos .section-head .eyebrow { color: #e8c9a0; }
.depoimentos .section-head h2 { color: var(--white); }
.depoimentos .section-head p { color: rgba(255,255,255,0.65); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.rating-summary .score {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--white);
}

.rating-summary .meta {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-align: left;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 30px 26px;
}

.review-card .stars { display: block; margin-bottom: 16px; }

.review-card p.quote {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
  min-height: 96px;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  overflow: hidden;
}

.reviewer .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer .name { font-size: 14px; font-weight: 600; }
.reviewer .via { font-size: 12px; color: rgba(255,255,255,0.5); }

.google-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
  display: inline-block;
}

.google-link-wrap { text-align: center; }

/* ===== Loja física ===== */
.loja {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.loja-photo { min-height: 420px; overflow: hidden; }
.loja-photo img { width: 100%; height: 100%; object-fit: cover; }

.loja-info {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.loja-info .eyebrow { margin-bottom: 14px; }

.loja-info h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin-bottom: 20px;
  color: var(--black);
}

.loja-info .addr {
  font-size: 16px;
  color: var(--off-black);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.loja-info .addr svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--wine); }

.loja-info .hours {
  font-size: 15px;
  color: var(--gray);
  margin: 18px 0 28px;
  display: flex;
  gap: 10px;
}

.loja-info .hours svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--wine); }

/* ===== Oferta final ===== */
.oferta-final {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--white);
  text-align: center;
}

.oferta-final .eyebrow { color: #f2e2c8; }

.oferta-final h2 {
  color: var(--white);
  font-size: clamp(28px, 4.4vw, 42px);
  max-width: 700px;
  margin: 14px auto 18px;
}

.oferta-final p {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 34px;
  font-size: 16px;
}

/* ===== Footer ===== */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 50px 0 30px;
}

footer .foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}

footer img.logo { height: 34px; }

footer .foot-addr { font-size: 14px; text-align: right; }
footer .foot-addr a { color: rgba(255,255,255,0.75); }

footer .foot-bottom {
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== Section CTA (botão repetido em cada seção) ===== */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .dif-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-item { flex: 0 0 calc((100% - 16px) / 2); }
  .review-grid { grid-template-columns: 1fr; }
  .loja { grid-template-columns: 1fr; }
  .loja-photo { min-height: 280px; }
  .loja-info { padding: 44px 28px; }
  footer .foot-top { flex-direction: column; align-items: flex-start; text-align: left; }
  footer .foot-addr { text-align: left; }
}

@media (max-width: 560px) {
  section { padding: 56px 0; }

  .hero h1 { font-size: 28px; }
  .hero p.lead { font-size: 15px; }
  .offer-badge { font-size: 11px; padding: 7px 14px; }
  .hero-addr { font-size: 13px; }

  .section-head h2 { font-size: 24px; }
  .section-head p { font-size: 14px; }
  .oferta-final h2 { font-size: 26px; }
  .oferta-final p { font-size: 15px; }
  .loja-info h2 { font-size: 24px; }

  .gallery-grid { gap: 10px; }
  .gallery-item { flex: 0 0 78%; }
  .gallery-grid img { height: 220px; }
  .gallery-arrow { width: 38px; height: 38px; font-size: 20px; }

  .btn-cta {
    padding: 15px 18px;
    font-size: 13px;
    line-height: 1.3;
    gap: 8px;
    letter-spacing: 0.01em;
    width: 100%;
    justify-content: center;
  }
  .btn-cta svg { width: 18px; height: 18px; }

  .hero .wrap { padding-top: 100px; }
  .rating-summary { flex-direction: column; gap: 4px; }
  .rating-summary .meta { text-align: center; }
}
