
:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #121826;
  --muted: #5c6577;
  --border: #e6eaf1;
  --primary: #ef2b2d;
  --primary-dark: #c9171d;
  --secondary: #0b1220;
  --green: #16a34a;
  --green-dark: #11803a;
  --shadow: 0 18px 45px rgba(10, 16, 32, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.eyebrow.light { color: #fff; }
.section-head { margin-bottom: 28px; }
.section-head.center { text-align: center; }
.section-head h2, .structure-head h2, .reviews-info h2, .form-copy h2, .contact-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
}
.section-head p, .structure-head p, .reviews-info p, .form-copy p, .contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 700;
  transition: .2s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(8px);
}
.btn-whatsapp {
  background: var(--green);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: #fff;
}
.header-cta, .floating-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  padding: 14px 22px;
}
.header-cta:hover, .floating-form-btn:hover { background: var(--primary-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 16px;
}
.brand strong {
  display: block;
  font-size: 1rem;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: .93rem;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.site-nav a {
  font-weight: 600;
  color: #1f2937;
}
.site-nav a:hover { color: var(--primary); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  background: url('assets/hero-estadio.jpg') center center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,11,20,.88) 0%, rgba(7,11,20,.70) 40%, rgba(7,11,20,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.hero-copy {
  max-width: 610px;
  padding: 80px 0;
}
.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
}
.hero-copy p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-badges div {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.hero-badges span { color: #7df7a4; margin-right: 6px; }

.structure-band {
  padding: 70px 0 36px;
  background: linear-gradient(180deg, #081120 0%, #101b30 100%);
  color: #fff;
}
.structure-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 28px;
}
.structure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.structure-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 26px;
  background: rgba(255,255,255,.06);
}
.structure-number {
  flex: 0 0 auto;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 900;
  color: #fff;
}
.structure-card h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}
.structure-card p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}
.benefits-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
  margin-top: 28px;
}
.benefit-item {
  text-align: center;
  background: rgba(255,255,255,.08);
  padding: 16px;
  border-radius: 16px;
  color: rgba(255,255,255,.92);
  font-weight: 600;
}

.gallery-section, .reviews-section, .steps-section, .form-section, .contact-section {
  padding: 78px 0;
}
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.carousel-track {
  display: flex;
  transition: transform .55s ease;
}
.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16 / 8.5;
  background: #dbe4ef;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: rgba(11,18,32,.62);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #c9d1df;
  cursor: pointer;
}
.carousel-dots button.active { background: var(--primary); }

.reviews-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}
.reviews-info, .review-card { padding: 28px; }
.google-mark {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1f6feb;
}
.review-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.review-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: #f4b400;
  font-weight: 800;
}
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.step-card { padding: 28px; }
.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffe5e6;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.step-card h3 { margin: 0 0 10px; font-size: 1.5rem; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.form-layout {
  display: grid;
  grid-template-columns: .95fr 1.25fr;
  gap: 24px;
  align-items: start;
}
.form-copy { padding-top: 18px; }
.security-box {
  margin-top: 24px;
  background: #e8f9ef;
  color: #166534;
  border: 1px solid #b9ecc9;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 600;
}
.form-card { padding: 28px; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.field-grid label { display: block; }
.field-grid span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
input, select, textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid #d6dce8;
  font: inherit;
  background: #fff;
}
textarea { resize: vertical; }
.full-width { grid-column: 1 / -1; }
.full-button { width: 100%; margin-top: 16px; }
.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .95rem;
  text-align: center;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
}

.site-footer {
  background: #071120;
  color: rgba(255,255,255,.9);
  padding: 46px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}
.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 12px;
}
.site-footer h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
}
.site-footer p { margin: 0 0 10px; color: rgba(255,255,255,.75); line-height: 1.7; }
.site-footer a:hover { color: #fff; }

.floating-form-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  box-shadow: 0 18px 35px rgba(0,0,0,.18);
}

@media (max-width: 1080px) {
  .reviews-layout { grid-template-columns: 1fr 1fr; }
  .reviews-info { grid-column: auto; }
  .benefits-row { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto auto; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 1.3rem;
    margin-left: auto;
    cursor: pointer;
  }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 18px;
  }
  .site-nav.open { display: flex; }
  .header-cta { display: none; }
  .structure-grid, .steps-grid, .form-layout, .footer-grid, .contact-card { grid-template-columns: 1fr; }
  .contact-card { align-items: flex-start; }
  .benefits-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero, .hero-content { min-height: 660px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1180px); }
  .hero-copy { padding: 92px 0 70px; }
  .hero-actions, .hero-badges { flex-direction: column; align-items: stretch; }
  .hero-badges div { border-radius: 18px; }
  .structure-card { flex-direction: column; align-items: flex-start; }
  .benefits-row { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .carousel-slide { aspect-ratio: 4 / 3; }
  .floating-form-btn {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}

.review-action { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.review-action h3 { font-size: 1.35rem; margin: 0; }
.review-symbol { color: #f4b400; font-size: 3.2rem; line-height: 1; }
.review-action .btn { align-self: flex-start; }

.verified-reviews {max-width:760px;margin:auto;padding:42px;text-align:center}
.verified-reviews p {margin-bottom:24px}

/* VERSÃO FINAL — capa > estrutura > formulário > fotos > avaliações > contato */
section[id] { scroll-margin-top: 96px; }
.header-inner { grid-template-columns: minmax(255px,auto) 1fr auto; column-gap: 18px; }
.site-nav { gap: clamp(12px,1.5vw,23px); flex-wrap: nowrap; }
.site-nav a { white-space: nowrap; font-size: .89rem; }
.brand strong { font-size: .96rem; }
.brand span { font-size: .82rem; }
.header-cta { white-space: nowrap; }
.form-section { background: #f4f7fd; padding-top: 72px; padding-bottom: 78px; }
.form-copy { align-self: center; }
.form-perks { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 12px; }
.form-perks span { border: 1px solid #dce3ef; background: #fff; border-radius: 15px; padding: 10px 12px; font-size: .84rem; font-weight: 700; }
.gallery-section { background: #fff; }
.carousel-slide { aspect-ratio: 16 / 9; background: #101827; }
.carousel-slide img { object-fit: contain; }
.reviews-section { background: #f5f7fb; padding-top: 68px; padding-bottom: 68px; }
.verified-reviews { width: min(100%, 1000px); margin-inline: auto; text-align: center; padding: 40px; }
.verified-reviews p { max-width: 660px; margin-inline: auto; }
.verified-reviews .btn { margin-top: 24px; }
.contact-section { background: #fff; padding-top: 38px; padding-bottom: 60px; }
.contact-card { background: #fff5f5; }
@media(max-width:1140px){
  .header-inner { gap: 12px; }
  .brand img { width: 58px; height: 58px; }
  .site-nav a { font-size: .80rem; }
  .header-cta { padding: 12px 15px; font-size:.86rem; }
}
@media(max-width:900px){
  .header-inner { grid-template-columns: 1fr auto; }
  .site-nav { flex-direction: column; flex-wrap: nowrap; align-items: flex-start; }
  .site-nav a { font-size: 1rem; }
}
@media(max-width:680px){
  .brand img { width: 56px; height: 56px; }
  .brand strong { font-size:.9rem; }
  .brand span { font-size:.75rem; }
  .hero { min-height: 680px; background-position: 64% center; }
  .hero-content { min-height:680px; }
  .hero-overlay { background:linear-gradient(90deg, rgba(7,11,20,.91) 0%,rgba(7,11,20,.65) 80%,rgba(7,11,20,.35) 100%); }
  .hero-copy h1 { font-size:clamp(2rem,8vw,3.2rem); }
  .structure-band, .form-section, .gallery-section, .reviews-section { padding-top:55px; padding-bottom:55px; }
  .structure-number { font-size:3.6rem; }
  .verified-reviews { padding:26px 20px; }
  .form-card { padding:20px; }
  .carousel-slide { aspect-ratio: 4 / 3; }
  .contact-card { flex-direction:column; padding:26px 20px; }
}

.floating-form-btn[hidden] { display:none; }


/* Versão WhatsApp + GTM — capa > estrutura > atendimento > fotos > avaliações */
.whatsapp-section {
  padding: 85px 0;
  background: linear-gradient(135deg, #f3f8ff 0%, #ffffff 100%);
}
.whatsapp-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}
.whatsapp-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.whatsapp-copy p {
  margin: 0;
  max-width: 590px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}
.whatsapp-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.whatsapp-perks span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #0f6b36;
  background: #e5faec;
  font-size: .86rem;
  font-weight: 700;
}
.whatsapp-card {
  padding: clamp(26px, 4vw, 54px);
  text-align: center;
  background: #fff;
}
.whatsapp-symbol {
  margin: 0 auto 23px;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(22, 163, 74, .21);
}
.whatsapp-symbol svg { width: 42px; height: 42px; }
.whatsapp-card h3 { font-size: clamp(1.6rem,3vw,2rem); margin:0 0 14px; }
.whatsapp-card p { margin:0 0 29px; color:var(--muted); line-height:1.7; }
.whatsapp-big-btn {
  width: 100%;
  min-height: 72px;
  font-size: 1.08rem;
  white-space: normal;
  box-shadow: 0 12px 28px rgba(22,163,74,.2);
}
.whatsapp-big-btn svg { flex: 0 0 26px; }
.whatsapp-card small { display:block; margin-top:17px; color:var(--muted); line-height:1.6; }
.floating-whatsapp-btn {
  position: fixed;
  right: 23px;
  bottom: 23px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #16a34a;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(13,49,28,.28);
  z-index: 60;
  transition: transform .18s ease, background .18s ease;
}
.floating-whatsapp-btn:hover { background:#12843c; transform: translateY(-3px) scale(1.03); }
.floating-whatsapp-btn:focus-visible { outline: 3px solid #f5222d; outline-offset: 4px; }
.floating-whatsapp-btn svg { width: 32px; height:32px; }
.btn-whatsapp svg { width: 25px; height: 25px; }
.hero-actions .btn-whatsapp { box-shadow: 0 14px 30px rgba(0,0,0,.16); }
@media(max-width:900px) {
  .whatsapp-layout { grid-template-columns: 1fr; }
}
@media(max-width:680px) {
  .whatsapp-section { padding: 54px 0; }
  .whatsapp-card { padding: 25px 19px; }
  .whatsapp-big-btn { padding: 16px; font-size:1rem; }
  .floating-whatsapp-btn { width: 55px; height:55px; right:15px; bottom:15px; }
  .floating-whatsapp-btn svg { width:28px; height:28px; }
}
