/* ==========================================================
   A Fatia Perfeita · Prévia visual
   Direção: experiência gastronômica noturna, premium e humana.
   O conteúdo e a estrutura de SEO permanecem preservados.
   ========================================================== */

:root {
  --verde: #0b8a55;
  --verde-claro: #15a668;
  --vermelho: #e52b1e;
  --vermelho-escuro: #b81f15;
  --preto: #0d0d0c;
  --grafite: #151513;
  --superficie: #1b1a18;
  --superficie-alta: #22211e;
  --creme: #f7f3eb;
  --texto: #f4f1ea;
  --texto-suave: #bdb8ae;
  --borda: rgba(255, 255, 255, 0.13);
  --borda-forte: rgba(255, 255, 255, 0.22);
  --raio: 3px;
  --sombra: 0 24px 70px rgba(0, 0, 0, 0.34);
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--texto);
  background: var(--preto);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--vermelho);
  outline-offset: 4px;
}

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

.container.narrow { max-width: 900px; }
.center { text-align: center; margin-top: 34px; }

/* ---------- Tipografia ---------- */
h1, h2, h3 {
  color: var(--texto);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 980px;
  margin: 18px 0 22px;
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  text-transform: uppercase;
}

h2 {
  max-width: 980px;
  margin: 18px 0 24px;
  font-size: clamp(2rem, 4.6vw, 4.35rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  text-transform: uppercase;
}

p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--texto-suave);
  background: transparent;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.tag::before {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--vermelho);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: var(--vermelho);
  box-shadow: 0 14px 34px rgba(229, 43, 30, 0.23);
}

.btn-primary:hover { background: var(--vermelho-escuro); }

.btn-light {
  color: #fff;
  background: var(--vermelho);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.btn-small {
  min-height: 44px;
  padding: 11px 20px;
  color: #fff;
  background: var(--verde);
}

.btn-small:hover {
  background: var(--verde-claro);
  box-shadow: 0 12px 28px rgba(11, 138, 85, 0.25);
}

/* ---------- Cabeçalho ---------- */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(8, 8, 7, 0.92), rgba(8, 8, 7, 0));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand img {
  width: 158px;
  height: auto;
}

/* ---------- Primeira dobra ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #0b0b0a;
}

.hero-grid {
  position: relative;
  display: flex;
  min-height: 100svh;
  max-width: none;
  align-items: flex-end;
  padding: 154px 0 78px;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.94) 0%, rgba(9, 9, 8, 0.76) 42%, rgba(9, 9, 8, 0.22) 74%, rgba(9, 9, 8, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 9, 8, 0.84) 0%, rgba(9, 9, 8, 0.02) 55%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--vermelho) 0 58%, var(--verde) 58% 100%);
}

.hero-text {
  position: relative;
  z-index: 3;
  width: min(900px, calc(100vw - 48px));
  margin-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  animation: hero-in 0.8s ease-out both;
}

.hero-text .lead {
  max-width: 740px;
  color: rgba(247, 243, 235, 0.86);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.65;
}

.hero-text .support {
  max-width: 650px;
  color: var(--texto-suave);
}

.hero-text .btn { margin-top: 14px; }

.hero-note {
  margin-top: 16px;
  color: rgba(247, 243, 235, 0.66);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture { display: block; height: 100%; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.015);
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Seções ---------- */
.section {
  position: relative;
  padding: clamp(78px, 9vw, 132px) 0;
  background: var(--preto);
}

.section-alt { background: var(--grafite); }

.section:not(.section-dark):not(.cta-final) + .section:not(.section-dark):not(.cta-final) {
  border-top: 1px solid var(--borda);
}

.section .narrow > p,
.section-intro {
  max-width: 780px;
  color: var(--texto-suave);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.section-dark {
  color: var(--texto);
  background:
    radial-gradient(circle at 85% 15%, rgba(229, 43, 30, 0.12), transparent 30%),
    #0a0a09;
}

.section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 4px;
  background: var(--vermelho);
}

.section-intro { color: var(--texto-suave); }

/* ---------- Blocos divididos ---------- */
.split {
  display: grid;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.split-text { position: relative; z-index: 2; }
.split-media { position: relative; }

.split-media::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 42%;
  height: 42%;
  border-top: 3px solid var(--vermelho);
  border-right: 3px solid var(--vermelho);
}

.split-media img {
  position: relative;
  width: 100%;
  min-height: 430px;
  border-radius: var(--raio);
  box-shadow: var(--sombra);
  object-fit: cover;
}

/* ---------- Benefícios ---------- */
.benefits {
  display: grid;
  list-style: none;
  margin-top: 30px;
  border-top: 1px solid var(--borda);
}

.benefits li {
  position: relative;
  padding: 20px 10px 20px 30px;
  border-bottom: 1px solid var(--borda);
  color: var(--texto-suave);
}

.benefits li::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 1px;
  width: 13px;
  height: 3px;
  background: var(--verde);
}

.benefits strong { color: var(--texto); }

/* ---------- Pacotes ---------- */
.cards {
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

.card {
  position: relative;
  min-height: 100%;
  padding: 32px 28px;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  background: var(--superficie);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--borda-forte);
  background: var(--superficie-alta);
}

.card h3 {
  color: var(--texto);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 17px;
  background: var(--verde);
}

.card p { color: var(--texto-suave); }

.card-destaque {
  border-color: rgba(229, 43, 30, 0.58);
  background: linear-gradient(150deg, rgba(229, 43, 30, 0.10), var(--superficie) 44%);
}

.card-destaque::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--vermelho);
}

.cards-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--texto-suave);
  font-size: 0.95rem;
  text-align: center;
}

/* ---------- Corporativo ---------- */
.corporativo {
  position: relative;
  margin-top: 42px;
  padding: 34px 34px 34px 40px;
  border: 1px solid var(--borda);
  border-left: 4px solid var(--verde);
  border-radius: var(--raio);
  color: var(--texto-suave);
  background: var(--superficie);
}

.corporativo h3 { color: var(--texto); }

/* ---------- Como funciona ---------- */
.steps {
  display: grid;
  gap: 0;
  margin-top: 38px;
  list-style: none;
  counter-reset: passo;
  border-top: 1px solid var(--borda);
}

.steps li {
  position: relative;
  min-height: 118px;
  padding: 28px 10px 28px 92px;
  border-bottom: 1px solid var(--borda);
  color: var(--texto-suave);
  counter-increment: passo;
}

.steps li::before {
  content: "0" counter(passo);
  position: absolute;
  top: 22px;
  left: 0;
  color: var(--vermelho);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.steps strong { color: var(--texto); }
.small-note { margin-top: 18px; color: var(--texto-suave); font-size: 0.86rem; }

/* ---------- Vídeos ---------- */
.video {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  background: #000;
}

.video img { width: 100%; }
.video video { width: 100%; display: block; }

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
  cursor: pointer;
}

.video-play span {
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: var(--vermelho);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  transition: transform 0.25s ease;
}

.video-play:hover span { transform: scale(1.08); }
.video-main { max-width: 450px; margin: 44px auto 10px; }
.video-caption { margin-top: 12px; color: var(--texto-suave); font-size: 0.84rem; text-align: center; }

/* ---------- Comentários ---------- */
.reviews {
  display: grid;
  gap: 18px;
  margin: 56px 0 34px;
}

.review {
  min-height: 100%;
  padding: 28px 26px;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  background: var(--superficie);
}

.review::before {
  content: "“";
  display: block;
  height: 36px;
  color: var(--vermelho);
  font-family: Georgia, serif;
  font-size: 3.7rem;
  line-height: 0.9;
}

.review blockquote { color: rgba(247, 243, 235, 0.9); font-size: 0.94rem; }
.review figcaption { margin-top: 20px; color: var(--texto); font-size: 0.8rem; font-weight: 600; }
.review-origin { color: var(--texto-suave); font-weight: 400; }

/* ---------- Galeria ---------- */
.gallery {
  display: grid;
  grid-auto-rows: 280px;
  gap: 10px;
  margin-top: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--raio);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 45%);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.035); }
.gallery-item .video { height: 100%; border: 0; }

/* ---------- FAQ ---------- */
.faq {
  margin-top: 34px;
  border-top: 1px solid var(--borda);
}

.faq details { border-bottom: 1px solid var(--borda); }

.faq summary {
  position: relative;
  padding: 24px 56px 24px 0;
  color: var(--texto);
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 2px;
  color: var(--vermelho);
  font-size: 1.8rem;
  font-weight: 400;
}

.faq details[open] summary::after { content: "–"; }
.faq details p { max-width: 760px; padding: 0 48px 24px 0; color: var(--texto-suave); }

/* ---------- CTA final ---------- */
.cta-final {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 90%, rgba(11, 138, 85, 0.34), transparent 36%),
    linear-gradient(120deg, #171513, #0a0a09);
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--vermelho);
}

.cta-final .split-media::before { border-color: var(--verde); }
.cta-final .split-media img { min-height: 500px; }

/* ---------- Rodapé ---------- */
.site-footer {
  padding: 54px 0 104px;
  border-top: 1px solid var(--borda);
  color: var(--texto-suave);
  background: #080807;
  font-size: 0.86rem;
  text-align: center;
}

.footer-inner img { width: 175px; margin: 0 auto 20px; }
.site-footer a { color: var(--texto); }
.footer-note { margin-top: 8px; font-size: 0.78rem; }

/* ---------- Botão flutuante ---------- */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: var(--verde);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
}

.floating-whatsapp:hover { background: var(--verde-claro); }
.floating-whatsapp.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floating-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

/* ---------- Desktop ---------- */
@media (min-width: 760px) {
  .split { grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr); }
  .cta-final .split { grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr); }
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .gallery-item { grid-column: span 2; }
  .gallery-item:first-child { grid-column: span 4; grid-row: span 2; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) { grid-column: span 2; }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 3; }
}

@media (min-width: 1040px) {
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits li:nth-child(odd) { padding-right: 30px; }
  .benefits li:nth-child(even) { padding-left: 54px; border-left: 1px solid var(--borda); }
  .benefits li:nth-child(even)::before { left: 25px; }
}

/* ---------- Celular ---------- */
@media (max-width: 759px) {
  .container { padding-right: 20px; padding-left: 20px; }
  .header-inner { min-height: 76px; }
  .brand img { width: 124px; }
  .btn-small { min-height: 42px; padding: 10px 14px; font-size: 0.65rem; letter-spacing: 0.09em; }

  .hero-grid { min-height: 92svh; padding: 132px 0 58px; }
  .hero-grid::before {
    background:
      linear-gradient(0deg, rgba(8, 8, 7, 0.96) 0%, rgba(8, 8, 7, 0.65) 64%, rgba(8, 8, 7, 0.3) 100%),
      linear-gradient(90deg, rgba(8, 8, 7, 0.78), rgba(8, 8, 7, 0.18));
  }
  .hero-text { width: calc(100vw - 40px); margin-left: 20px; }
  .hero-media img { object-position: 51% 52%; }
  .hero-text .btn { width: 100%; }

  .section { padding: 74px 0; }
  h2 { margin-bottom: 20px; }
  .tag::before { width: 34px; }
  .split { gap: 42px; }
  .split-media::before { top: -10px; right: -10px; }
  .split-media img { min-height: 340px; }
  .benefits li { padding-top: 18px; padding-bottom: 18px; }
  .card { padding: 28px 24px; }
  .corporativo { padding: 28px 24px; }
  .steps li { padding-left: 74px; }
  .steps li::before { font-size: 2.2rem; }
  .reviews { margin-top: 42px; }
  .gallery { grid-auto-rows: 280px; }
  .video-main { max-width: 340px; }
  .cta-final .split-media img { min-height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ==========================================================
   Prévia v2 · ajustes aprovados de hierarquia e conteúdo
   ========================================================== */

.btn-small {
  background: var(--verde);
  box-shadow: 0 10px 26px rgba(11, 138, 85, 0.24);
}

.btn-small:hover { background: var(--verde-claro); }

.btn-green {
  color: #fff;
  background: var(--verde);
  box-shadow: 0 14px 34px rgba(11, 138, 85, 0.22);
}

.btn-green:hover { background: var(--verde-claro); }

.btn-outline {
  margin-top: 10px;
  border-color: var(--borda-forte);
  color: var(--texto);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--verde);
  background: rgba(11, 138, 85, 0.12);
}

h1 {
  max-width: 880px;
  margin: 16px 0 18px;
  font-size: clamp(2.7rem, 4.3vw, 4.2rem);
  line-height: 1.01;
}

.hero-grid {
  min-height: 100svh;
  align-items: center;
  padding: 118px 0 38px;
}

.hero-text { width: min(830px, calc(100vw - 48px)); }

.hero-text .lead {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
}

.hero-text .support {
  max-width: 680px;
  margin-bottom: 8px;
  font-size: 0.96rem;
}

.hero-text .btn { margin-top: 10px; }
.hero-note { margin-top: 12px; }
.hero-media img { object-position: center center; }

.service-cta { margin-top: 30px; }

.section-heading { max-width: 900px; }
.section-heading > p {
  max-width: 790px;
  color: var(--texto-suave);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

/* Detalhes de qualidade */
.details-section {
  background:
    linear-gradient(110deg, rgba(11, 138, 85, 0.08), transparent 38%),
    var(--preto);
}

.details-heading { margin-bottom: 44px; }

.detail-grid {
  display: grid;
  gap: 1px;
  margin-top: 0;
  border: 1px solid var(--borda);
  background: var(--borda);
}

.detail-card {
  position: relative;
  padding: clamp(30px, 4vw, 54px);
  background: var(--grafite);
}

.detail-card-featured {
  background:
    linear-gradient(145deg, rgba(229, 43, 30, 0.13), transparent 56%),
    var(--grafite);
}

.detail-number {
  display: block;
  margin-bottom: 26px;
  color: var(--vermelho);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.detail-card h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.detail-card h3 {
  margin: -4px 0 18px;
  color: var(--texto-suave);
  font-size: 0.88rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.detail-card p { color: var(--texto-suave); }

/* Ocasiões */
.occasions { overflow: hidden; }

.occasion-grid {
  display: grid;
  gap: 14px;
  margin-top: 46px;
}

.occasion-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  background: var(--superficie);
}

.occasion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent 62%);
}

.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.occasion-card:hover img { transform: scale(1.035); }

.occasion-card figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: #fff;
  color: #fff;
}

.occasion-card figcaption h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.12rem;
  letter-spacing: 0.025em;
}

.occasion-card figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.occasion-main-cta { margin-top: 28px; }

.corporativo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 34px;
  align-items: center;
}

.corporativo h3,
.corporativo p { margin-bottom: 0; }

.corporativo .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* Serviço adicional */
.rental-section { padding-top: 0; }

.rental-box {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-top: clamp(52px, 7vw, 86px);
  padding-bottom: clamp(52px, 7vw, 86px);
  border: 1px solid var(--borda);
  background:
    radial-gradient(circle at 10% 50%, rgba(11, 138, 85, 0.24), transparent 28%),
    var(--grafite);
}

.rental-mark {
  color: var(--vermelho);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.8;
  text-align: center;
}

.rental-copy { max-width: 820px; padding-right: 38px; }
.rental-copy .btn { margin-top: 20px; }

/* Registros e depoimentos */
.gallery { margin-top: 44px; }

.testimonials {
  background:
    radial-gradient(circle at 90% 15%, rgba(11, 138, 85, 0.14), transparent 28%),
    var(--grafite);
}

.testimonials-layout {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
  margin-top: 46px;
}

.testimonials .video-main { max-width: 390px; margin: 0 auto; }
.testimonials .reviews { margin: 0; }

/* CTA final */
.cta-final {
  text-align: center;
  background:
    radial-gradient(circle at 15% 100%, rgba(11, 138, 85, 0.30), transparent 34%),
    radial-gradient(circle at 85% 0%, rgba(229, 43, 30, 0.20), transparent 32%),
    #0a0a09;
}

.cta-final-copy { max-width: 880px; margin: 0 auto; }
.cta-final-copy h2 { margin-right: auto; margin-left: auto; }
.cta-final-copy p { max-width: 680px; margin: 0 auto 28px; color: var(--texto-suave); }

/* Rodapé */
.site-footer {
  padding: 64px 0 28px;
  text-align: left;
}

.footer-inner {
  display: grid;
  gap: 48px;
}

.footer-inner img { margin: 0 0 20px; }
.footer-brand p { max-width: 350px; }

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 8px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.footer-nav a,
.footer-contact a { color: var(--texto); text-decoration: none; }
.footer-nav a:hover,
.footer-contact a:hover { color: var(--vermelho); }
.footer-contact p { margin-top: 8px; font-size: 0.78rem; }

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-link svg { flex: 0 0 auto; color: var(--verde-claro); }

.btn-footer-whatsapp {
  margin-top: 12px;
  color: #fff !important;
  background: var(--verde);
  box-shadow: 0 12px 28px rgba(11, 138, 85, 0.20);
}

.btn-footer-whatsapp:hover {
  color: #fff !important;
  background: var(--verde-claro);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--borda);
  font-size: 0.76rem;
  text-align: center;
}

@media (min-width: 760px) {
  .detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-card:last-child { grid-column: 1 / -1; }
  .occasion-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonials-layout { grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr); }
  .footer-inner { grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.7fr) minmax(200px, 0.65fr); }
}

@media (min-width: 1100px) {
  .detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detail-card:last-child { grid-column: auto; }
}

@media (max-width: 759px) {
  h1 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .hero-grid { min-height: 92svh; padding: 116px 0 42px; }
  .hero-text { width: calc(100vw - 40px); }
  .hero-text .lead { line-height: 1.5; }
  .hero-text .support { font-size: 0.9rem; }
  .hero-media img { object-position: 58% center; }

  .occasion-card { min-height: 390px; }
  .corporativo { display: block; }
  .corporativo p { margin-bottom: 20px; }
  .corporativo .btn { width: 100%; }

  .rental-box {
    grid-template-columns: 1fr;
    gap: 12px;
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }
  .rental-mark { text-align: left; }
  .rental-copy { padding: 0 24px 4px; }
  .rental-copy .btn { width: 100%; }

  .testimonials .video-main { max-width: 320px; }
  .site-footer { padding-bottom: 96px; }
}
