:root {
  --black: #0b0b0c;
  --dark: #111113;
  --panel: #18181b;
  --gold: #f6c644;
  --gold-strong: #f0a800;
  --soft-gray: #f4f4f5;
  --muted: #a9a9b2;
  --line: #2a2a31;
  --white: #ffffff;
  --cta: #f7c948;
}

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

body {
  font-family: "Barlow", "Space Grotesk", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* constrain individual sections (except #band-outer) */
#hero,
#vantagens,
#coberturas,
#comparativo,
#contato,
#club,
#footer {
  max-width: 1360px;
  margin: 0 auto;
  box-sizing: border-box;
}

header {
  background: linear-gradient(90deg, #131313 0%, #232323 50%, #ffdb5a 50%, #f5b400 100%);
  padding: 22px 32px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo .mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, #ffd34d, #e89900);
  display: grid;
  place-items: center;
  color: #111;
  font-weight: 900;
  font-size: 18px;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
}

nav a {
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.cta-top {
  background: #111;
  color: var(--gold-strong);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 217, 99, 0.6);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: #0b0b0c;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}

#hero {
  margin-bottom: 8%;
}

/* Header inside hero */
.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 55px 100px;
  z-index: 30;
  background: transparent;
}
.hero-header .logo{
  display:flex;
  align-items:center;
  gap:14px;
}
.hero-header .logo img {
  width: auto;
  display: block;
  position: absolute;
  top: 0px;
  left: 165px;
  max-height: 340px;
}

.hero-header .mark{ background: radial-gradient(circle at 30% 30%, #ffd34d, #e89900); color:#111; }

.hero-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 20px;
  font-family: "Lexend",sans-serif;
}

.hero-header nav a{ color:#111; font-weight:700; text-transform:uppercase; }

.hero-left{ padding-top: 120px; }
.hero-left .hero-logo{ display:block; margin-bottom: 18px; width: 200px; height:auto; }

.hero-left {
  background: #0b0b0c;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  margin-left: 30%;
  margin-top: 28%;
}

.hero-logo {
  width: 210px;
  height: auto;
}

.hero-left h1 {
  font-size: 44px;
  line-height: 1.05;
  max-width: 560px;
  text-transform: none;
  font-weight: 800;
}

.hero-left h1 .highlight{ color: var(--gold); }

.lead {
  color: var(--soft-gray);
  max-width: 580px;
  font-size: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--gold-strong);
  font-size: 20px;
  letter-spacing: 0.4px;
}

.hero-badge span {
  font-size: 46px;
  line-height: 1;
}

.hero-cta {
  margin-top: 6px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 30px 22px;
  border-radius: 28px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  text-decoration: none;
  float: left;
  z-index: 3;
  background-color: rgb(255,188,21);
  background-image: none;
  color: rgb(0,0,0);
  border: 0px;
  font-size: 18px;
  text-align: center;
  border-radius: 100px;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(246, 198, 68, 0.5);
}

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

.hero-right {
  position: relative;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 24px 0;
  overflow: hidden;
}

/* thin decorative gold divider crossing into the right gradient */
.hero::before {
  content: "";
  position: absolute;
  left: 36%;
  right: 70px;
  top: 140px;
  height: 6px;
  z-index: 26;
  border-bottom: 5px solid rgb(203,154,30);
}

/* background requested by client */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 1;
  border: 0px solid rgb(163,186,198);
  filter: hue-rotate(0deg) saturate(1) brightness(1) contrast(1) invert(0) sepia(0) blur(0px) grayscale(0);
  border-radius: 0px;
  background-image: url('/arquivos/imagens/background.png');
  background-size: cover;
  background-color: rgba(0,0,0,0);
  background-position: 37% 50%;
  background-repeat: no-repeat;
  max-width: 90%;
}

.hero-car {
  position: relative;
  z-index: 5;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}

.image-placeholder {
  width: 90%;
  max-width: 540px;
  height: 260px;
  background: repeating-linear-gradient(135deg, #1c1c20 0, #1c1c20 12px, #2b2b31 12px, #2b2b31 24px);
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-align: center;
  padding: 18px;
}

#page #band-outer {
  max-width: 100%;
  margin: 0 auto;
}

/* make the outer wrapper span the entire viewport width so the sides are the same #161616 color */
#band-outer {
  width: 100vw;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #161616;
  padding: 75px 0;
  box-sizing: border-box;
}


.band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  padding: 40px 28px;
  border-radius: 18px;
  /* allow stat card to overflow the inner frame */
  overflow: visible;
  background-image: url('/arquivos/imagens/fundosectionnumeros.jpg');
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  position: relative;
}

.band-left .band-text h2 {
  font-size: 44px;
  color: var(--white);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 175px;
  margin-left: 20px;
}

.band-left .gold{ color: var(--gold); }

.band-right{ display:flex; justify-content:flex-end; }

..stat-card {
  color: var(--white);
  min-width: 460px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* stat CTA should slightly escape the inner frame */
.stat-card.stats-cta {
  position: relative;
  z-index: 60;
  transform: translate(86px, -46px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
  border-radius: 14px;
  margin-top: 70px;
  background: #403e3e;
  padding: 40px;
    padding-right: 40px;
  border: 1px solid rgb(17,17,17);
  padding-right: 90px;
}

.stat-card .caps{ color: rgba(255,255,255,0.75); letter-spacing: 2px; font-size:13px; margin-bottom:8px; text-transform:uppercase; }

.stat-value{ font-size:48px; font-weight:900; line-height:1; }

.stat-card hr{ border:0; height:1px; background: rgba(255,255,255,0.12); margin: 14px 0; }

.stat-card .gold {
  color: var(--gold);
  font-weight: 700;
  font-size: 24px;
}

@media (max-width: 900px){
  .band-inner{ grid-template-columns: 1fr; padding: 28px; }
  .stat-card, .stat-card.stats-cta{ min-width: auto; width: 100%; transform: none; }
  .band-left .band-text h2{ font-size: 32px; }
  .stat-value{ font-size:36px; }
}

.section {
  padding: 48px 24px 32px;
}

/* head layout: left large title + right small paragraph */
.section-head{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: 48px;
  line-height: 1.02;
  font-weight: 900;
  margin: 0 0 8px 0;
    margin-left: 0px;
  color: #fff;
  letter-spacing: -0.5px;
  margin-left: 15%;
}

.section-head .sub {
  text-align: left;
  margin: 10px 0 0 0;
    margin-right: 0px;
    margin-left: 0px;
  font-size: 20px;
  font-weight: 600;
  margin-right: 20%;
  margin-left: 20%;
}

/* highlight AGUARDA slightly larger */
.section-head h2 span{ font-size: 52px; color: var(--gold); }

.cards-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr)  ;
  gap: 36px;
  margin-top: 26px;
  align-items: start;
}

.cards-wrapper > .card{ grid-column: auto; }
.cards-wrapper > .cta-button{ justify-self: center; grid-row: 2; }

@media (max-width: 1100px){
  .cards-wrapper{ grid-template-columns: repeat(2, 1fr); }
  .cards-wrapper > .cta-button{ grid-column: span 1; }
}

@media (max-width: 700px){
  .cards-wrapper{ grid-template-columns: 1fr; }
  .cards-wrapper > .cta-button{ grid-column: auto; }
}


.card {
  background: #333336; /* slightly darker */
  border-radius: 18px;
  padding: 28px 22px 56px; /* extra bottom space for visual separation */
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  min-height: 360px;
  position: relative;
}

.card-image{ width: 200px; height: 150px; display:grid; place-items:center; margin-top: 10px; }
.card-image img{ max-width:100%; max-height:100%; object-fit:contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45)); }

.card h3{ align-self:flex-start; color: #fff; font-weight:800; margin: 0 0 10px 0; font-size:18px; }

.card p {
  color: rgb(255, 255, 255);
  text-align: center;
  margin: 0;
  line-height: 1.45;
}

/* pill button centered below card; narrower than card */
.btn-block{ display:inline-block; margin-top:auto; width: 240px; text-align:center; padding: 14px 22px; border-radius: 28px; background: linear-gradient(90deg,#ffd34c,#f1ad22); color: #111; font-weight:800; box-shadow: 0 10px 30px rgba(241,173,34,0.15); text-transform:uppercase; letter-spacing:1px; }

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

@media (max-width: 1100px){
  .card-grid{ grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 700px){
  .card-grid{ grid-template-columns: 1fr; gap: 20px; }
  .section-head h2{ font-size: 28px; }
  .btn-block{ width: 100%; }
}

/* CTA row placed below the cards */
.card-cta-row{
  max-width: 1200px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px; /* match card-grid gap */
  justify-items: center;
  align-items: center;
}

.cta-button{
  width: 260px;
  padding: 14px 22px;
  border-radius: 28px;
  background: linear-gradient(90deg,#ffd34c,#f1ad22);
  color: #111;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(241,173,34,0.15);
  text-transform: uppercase;
}

@media (max-width: 1100px){
  .card-cta-row{ grid-template-columns: repeat(2, 1fr); }
  .cta-button{ width: 320px; }
}

@media (max-width: 700px){
  .card-cta-row{ grid-template-columns: 1fr; gap: 16px; }
  .cta-button{ width: 100%; }
}
@media (max-width: 1100px){
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
  .section-head .sub{ text-align: left; }
  .section-head{ grid-template-columns: 1fr; }
}

@media (max-width: 700px){
  .card-grid{ grid-template-columns: 1fr; }
  .section-head h2{ font-size: 28px; }
  .card{ min-height: auto; }
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.card {
  background: #403e3e;
  border: 1px solid #24242a;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 350px;
}

.card h3 {
  font-size: 18px;
  color: var(--gold);
}

.card p {
  font-size: 14px;
  font-weight: 600;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--white);
  padding: 6px 10px;
  background: #0f0f11;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid #26262c;
}

.divider {
  height: 1px;
  background: #24242a;
  margin: 32px auto;
  max-width: 1080px;
}

.coverage-section { text-align: center; }

.coverage-head h2 { font-size: 36px; line-height: 1.1; margin-bottom: 6px; }
.coverage-head .highlight { color: var(--gold); }

.coverage-head .sub {
  font-size: 22px;
  color: var(--white);
  margin-top: 4px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.coverage-card {
  background: #2a2a2f;
  border-radius: 25px;
  padding: 40px 20px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  margin: 10px;
}

.coverage-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.coverage-icon img { max-width: 50px; max-height: 50px; object-fit: contain; }

.coverage-card h3 {
  font-size: 15px;
  color: #f8f8f8;
  font-weight: 800;
  text-align: center;
  margin: 0;
}

.coverage-card p {
  color: #f1f1f1;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

@media (max-width: 1100px){
  .coverage-grid{ grid-template-columns: repeat(3, minmax(200px, 1fr)); }
}

@media (max-width: 820px){
  .coverage-grid{ grid-template-columns: repeat(2, minmax(200px, 1fr)); }
  .coverage-head h2{ font-size: 32px; }
}

@media (max-width: 560px){
  .coverage-grid{ grid-template-columns: 1fr; }
  .coverage-head h2{ font-size: 28px; }
  .coverage-card{ min-height: auto; }
}

.compare-section { text-align: center; }

.compare-head h2 { font-size: 42px; line-height: 1.2; margin-bottom: 32px; }
.compare-head .highlight { color: var(--gold); }

.compare-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 0fr));
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}

.compare-card {
  background: #202022;
  border-radius: 28px;
  padding: 32px 36px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  min-height: 380px;
  max-width: 450px;
}

.compare-card h3 {
  font-size: 26px;
  line-height: 1.25;
  color: #f8f8f8;
  text-align: center;
  margin: 0;
}

.compare-card .highlight { color: var(--gold); }

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
  width: 100%;
}

.compare-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 16px;
  color: #f8f8f8;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 25px;
  color: #fff;
  padding-bottom: 40px;
}

.negative .icon-circle { background: #e53935; }
.positive .icon-circle { background: #22c55e; }

@media (max-width: 900px){
  .compare-card{ min-height: 0; padding: 28px 24px; }
  .compare-head h2{ font-size: 36px; }
}

@media (max-width: 560px){
  .compare-head h2{ font-size: 30px; }
  .compare-item{ grid-template-columns: 34px 1fr; font-size: 14px; letter-spacing: 0.08em; }
}

#estrutura {
  max-width: 1360px;
  margin: 0 auto;
  box-sizing: border-box;
}

.structure-section { text-align: center; }

.structure-head { margin-bottom: 36px; }
.structure-kicker {
  font-size: 14px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0 0 10px;
}
.structure-head h2 {
  font-size: 38px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0;
}
.structure-head .highlight { color: var(--gold); }

.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 26px;
  align-items: stretch;
}

.structure-card {
  background: #0f0f10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.structure-image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.structure-bar {
  background: var(--gold);
  color: #111;
  font-weight: 800;
  text-align: center;
  padding: 14px 16px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.structure-body {
  padding: 30px 35px 35px;
  color: #f8f8f8;
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.structure-strong {
  font-weight: 800;
  color: #fdfdfd;
  margin: 0;
}

@media (max-width: 1100px){
  .structure-grid{ grid-template-columns: repeat(2, minmax(260px, 1fr)); }
}

@media (max-width: 720px){
  .structure-grid{ grid-template-columns: 1fr; }
  .structure-head h2{ font-size: 32px; }
  .structure-image img{ height: 320px; }
}

.contact-section { margin-top: 48px; }

.contact-wrap {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: stretch;
  background: #0e0e10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0,0,0,0.45);
}

.contact-visual {
  background: #0d0d0f url("../arquivos/imagens/carro2.png") left center / contain no-repeat;
  min-height: 420px;
  position: relative;
}

.contact-form {
  background: #0e0e10;
  padding: 32px 32px 36px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-form h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #fdfdfd;
  margin: 0;
}

.contact-form .highlight { color: var(--gold); }

.contact-sub {
  color: #e6e6e6;
  font-size: 15px;
  margin: -4px 0 8px;
}

.contact-form input {
  width: 100%;
  background: #f6f6f6;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  padding: 13px 14px;
  color: #111;
  font-size: 14px;
}

.contact-form input::placeholder { color: #777; }

.contact-form .honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form .btn-primary {
  width: 100%;
  background: linear-gradient(90deg, #f6c644 0%, #f0a800 100%);
  border: none;
  color: #111;
  font-weight: 800;
  font-size: 16px;
  padding: 14px;
}

.contact-form .btn-primary:hover { filter: brightness(0.97); }

.form-feedback {
  min-height: 20px;
  font-size: 14px;
  color: #8be28b;
  margin: 0;
}

@media (max-width: 960px){
  .contact-wrap{ grid-template-columns: 1fr; }
  .contact-visual{ min-height: 300px; background-position: center; }
}

@media (max-width: 640px){
  .contact-form{ padding: 24px 20px 28px; }
  .contact-form h2{ font-size: 28px; }
}

@media (max-width: 768px){
  body, #page{ overflow-x: hidden; }

  .menu-toggle{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 16px;
    top: 16px;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    cursor: pointer;
  }
  .hero-header{
    justify-content: center;
  }
  .hero-header .logo{
    margin: 0 auto;
    text-align: center;
  }
  .hero-header nav{ display: none; width: 100%; }
  .hero-header nav[style]{ display: none !important; }
  body.nav-open .hero-header nav{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(11,11,12,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    z-index: 50;
  }
  body.nav-open .hero-header{ align-items: flex-start; }
  .hero-header nav a{ padding: 6px 0; }

  /* HERO */
  .hero{ grid-template-columns: 1fr; min-height: auto; padding-bottom: 20px; }
  .hero-header{ padding: 18px 16px; position: relative; flex-wrap: wrap; gap: 8px; }
  .hero-header nav{ gap: 10px; font-size: 14px; flex-wrap: wrap; justify-content: flex-start; }
  .hero-header .logo img{ position: relative;
    left: 0;
    top: 0;
    height: 240px;
    width: auto; }
  .hero::before{ display: none; }
  .hero-bg{ max-width: 100%; background-position: center; }
  .hero-left{ margin-left: 0; margin-top: 0; padding: 110px 18px 20px; text-align: center; align-items: center; }
  .hero-left h1{
    font-size: 26px;
    max-width: 520px;
    margin-top: 70px;
  }
  .hero-header nav a {
  color: #ffbc15;
  font-weight: 700;
  text-transform: uppercase;
  }
  .lead{ font-size: 15px; max-width: 520px; }
  .hero-badge{ font-size: 16px; }
  .hero-cta{ justify-content: center; gap: 10px; }
  .btn{ padding: 16px 18px;
    font-size: 14px; }
  .hero-right{ display: none; }

  /* BAND */
  #band-outer{ margin: 0; width: 100%; padding: 36px 0; overflow: hidden; }
  .band-inner{ grid-template-columns: 1fr; padding: 28px 18px; background-position: center; border-radius: 12px; gap: 18px; }
  .band-left .band-text h2{ margin: 0 0 12px; text-align: center; font-size: 28px; }
  .stat-card, .stat-card.stats-cta{ position: relative;
  z-index: 60;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
  border-radius: 14px;
  margin-top: 70px;
  background: #403e3e;
  padding: 25px; }

  /* VANTAGENS */
  .section{ padding: 32px 16px 26px; }
  .section-head{ grid-template-columns: 1fr; }
  .section-head h2{ font-size: 30px; margin-left: 0; text-align: center; }
  .section-head .sub{ text-align: center; margin: 6px 0 0; font-size: 16px; }
  #vantagens .cards-wrapper{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding: 0 8px;
    overflow: visible;
  }
  #vantagens .card{
    min-height: auto;
    height: auto;
    padding: 25px 20px 25px;
    width: 100%;
  }
  #vantagens .cta-button{
    width: 100%;
    order: 2;
    margin-top: 8px;
  }
  #vantagens .card:nth-of-type(1){ order: 1; }
  #vantagens .cta-button:nth-of-type(1){ order: 2; }
  #vantagens .card:nth-of-type(2){ order: 3; }
  #vantagens .cta-button:nth-of-type(2){ order: 4; }
  #vantagens .card:nth-of-type(3){ order: 5; }
  #vantagens .cta-button:nth-of-type(3){ order: 6; }
  #vantagens .card:nth-of-type(4){ order: 7; }
  #vantagens .cta-button:nth-of-type(4){ order: 8; }
  .card-cta-row{ grid-template-columns: 1fr; width: 100%; gap: 12px; margin: 12px auto 0; }
  .card-image{ width: 160px; height: 120px; }
  .card h3{ font-size: 16px; }
  .card p{ font-size: 13px; }

  /* COBERTURAS */
  .coverage-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .coverage-card{ padding: 15px 20px; min-height: auto; margin: 0px; }
  .coverage-head h2{ font-size: 30px; }
  .coverage-card h3{ font-size: 14px; }
  .coverage-card p{ font-size: 12.5px; }
  .coverage-icon{ width: 60px; height: 60px; }
  .coverage-icon img{ max-width: 44px; max-height: 44px; }

  /* COMPARATIVO */
  .compare-panels{ grid-template-columns: 1fr; justify-items: center; gap: 16px; }
  .compare-card{ max-width: 520px; padding: 26px 20px; }
  .compare-item{ letter-spacing: 0.06em; font-size: 14px; }
  .icon-circle{ width: 32px; height: 32px; font-size: 18px; padding-bottom: 0; }

  /* ESTRUTURA */
  .structure-grid{ grid-template-columns: 1fr; gap: 18px; }
  .structure-image img{ height: 260px; }
  .structure-head h2{ font-size: 32px; }

  /* CONTATO */
  .contact-wrap{ grid-template-columns: 1fr; }
  .contact-visual{ min-height: 300px; background-size: contain; background-position: center; }
  .contact-form{ padding: 22px 18px 26px; }
  .contact-form h2{ font-size: 26px; }
  .contact-form input{ font-size: 14px; padding: 12px 12px; }

  /* CLUBE */
  .club-section{ padding: 0 8px; }
  .club-image{ border-radius: 16px; width: 100%; }

  /* FOOTER */
  .footer-grid{ grid-template-columns: 1fr; gap: 12px; }
  .footer-logo{ max-width: 150px; }
  .badges{ justify-items: start; }
}

.club-section {
  margin: 48px auto;
  max-width: 1240px;
  padding: 0 12px;
}

.club-banner {
  display: block;
  width: 100%;
  text-align: center;
}

.club-image {
  margin: 5% 10% 5% 10%;
}

.club-image {
  width: 80%;
  height: auto;
  border-radius: 25px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.footer {
  margin: 32px auto 32px;
  max-width: 1400px;
  padding: 24px 32px;
  background: #ffffff;
  color: #111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.4fr 1.6fr 0.9fr;
  gap: 20px;
  align-items: center;
}

.footer-block h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #111;
}

.footer-block p,
.footer-block li {
  margin: 4px 0;
  font-size: 15px;
  color: #111;
  list-style: none;
}

#footer {
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-block ul { padding: 0; margin: 0; }

.footer-block strong { display: block; margin-bottom: 6px; }

.footer-block.logos { display: grid; gap: 16px; justify-items: center; }
.footer-logo { max-width: 170px; height: auto; display: block; }

.badges { display: grid; gap: 10px; justify-items: end; }
.store-badge { width: 180px; height: auto; display: block; }

@media (max-width: 1100px){
  .footer-grid{ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); justify-items: start; }
  .badges{ justify-items: start; }
}

@media (max-width: 700px){
  .footer{ padding: 20px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 18px; }
  .footer-block.logos{ justify-items: start; }
}

#coberturas h2 {
  text-align: center !important;
  font-weight: 900;
  margin: 0 0 8px 0;
    margin-bottom: 8px;
    margin-left: 0px;
  color: #fff;
  letter-spacing: -0.5px;
  margin-left: 0%;
}

@media (max-width: 900px) {
  header {
    background: #18181b;
  }
  .hero-right {
    background: #0f0f11;
  }
  .band {
    grid-template-columns: 1fr;
  }
}
