* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background: #000; /* fallback */
  position: relative;
  overflow-x: hidden;
  padding-top: 110px;
}
section {
  padding: 140px 1 ;
}

/* ================= HERO ================= */


/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 56px;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255,255,255,0.08);

  transition:
    padding 0.35s ease,
    background 0.35s ease;
}
.navbar.glass {
  background:
    linear-gradient(
      180deg,
      rgba(20,20,20,0.85),
      rgba(5,5,5,0.65)
    );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,162,77,0.15);
}
.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,162,77,0.6),
    transparent
  );
  opacity: 0.6;
}
.navbar.shrink {
  padding: 8px 56px;
  background: rgba(0, 0, 0, 0.65);
}
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("noise.png");
  opacity: 0.04;
  pointer-events: none;
}

.logo {
  height: 64px;
  transition: height 0.35s ease;
}

.navbar.shrink .logo {
  height: 46px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 13px;
  letter-spacing: 1px;
  transition: opacity .3s ease;
}

.nav a:hover {
  opacity: .65;
}

/* ================= BOTÃO ================= */
.btn-main {
  background: linear-gradient(135deg, #c9a24d, #c9a24d);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 12px 40px #c9a24d(39,174,96,.45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px #c9a24d(39,174,96,.6);
}
.btn-primary {
  box-shadow:
    0 0 18px rgba(34,197,94,0.35),
    0 12px 35px rgba(0,0,0,0.6);
}

.btn-primary:hover {
  box-shadow:
    0 0 28px rgba(34,197,94,0.55),
    0 18px 45px rgba(0,0,0,0.75);
}
.about-btn {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}


/* ================= BANNER ================= */
.hero-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("banner.png/Design\ sem\ nome\ \(2\).png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-overlay {
  position: absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.85)
  );
}

@media (max-width: 768px) {
  .hero-banner-overlay {
    position: absolute;
    inset:auto;
  }
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-banner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  color: #c9a24d;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-shadow: 0 10px 35px rgba(0,0,0,.6);
}

.hero-banner-content p {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e6e6e6;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 70px;
}

.hero-text {
  max-width: 720px;
  text-align: center;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 14px 45px rgba(0,0,0,.6);
}

.hero-text h1 span {
  color: #c9a24d;
}

.hero-text p {
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* BENEFÍCIOS */
.benefits {
  list-style: none;
  margin-bottom: 38px;
}

.benefits li {
  font-size: 15px;
  margin-bottom: 16px;
  color: #f1f1f1;
}

.benefits li::before {
  content: "✓";
  color: #c9a24d;
  margin-right: 14px;
  font-weight: bold;
}

/* ================= SOBRE A BASE ================= */
/* FUNDO TEXTURIZADO PADRÃO */



.about-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.about-header {
  text-align: center;
  margin-bottom: 90px;
}

.about-eyebrow {
  display: inline-block;
  color: #c9a24d;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 22px;
}

.about-header h2 span {
  color: #c9a24d;
}

.about-header p {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
}

/* ================= ESTATÍSTICAS ================= */
.about-stats-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ===== CONTAINER DOS CARDS ===== */
.about-stats {
  display: flex !important;
  flex-direction: row !important;
  gap: 40px;

  max-width: 1100px;
  width: 100%;

  justify-content: space-between;
  align-items: stretch;
}

/* ===== CARD ===== */
.stat-card {
  flex: 1 1 0;
  min-width: 0;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;

  padding: 44px 30px;
  text-align: center;
}

/* NÚMERO */
.stat-number {
  display: block;
  font-size: 46px;
  font-weight: 600;
  color: #c9a24d;
  margin-bottom: 10px;
}

/* TEXTO */
.stat-card span {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f1f1f1;
}
.plan-pricing {
  margin: 28px 0 34px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
}

.price-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  min-width: 110px;
}

.price-option.highlight {
  border-color: rgba(201,162,77,0.6);
  box-shadow:
    0 0 0 1px rgba(201,162,77,0.4),
    0 12px 40px rgba(0,0,0,0.6);
}

.price-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9a24d;
  margin-bottom: 6px;
}

.price-value {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.price-divider {
  display: none;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .about-stats {
    flex-direction: column !important;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    gap: 16px;
  }
}

/* TEXTO */
.about-text {
  max-width: 820px;
  margin: auto;
  text-align: center;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #d0d0d0;
  margin-bottom: 22px;
}

/* ================= TABLET (768px para baixo) ================= */
@media (max-width: 768px) {

  body {
    padding-top: 60px;/*era 95*/
  }

  section {
    padding: 100px 24px;
  }
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center; /* centraliza a logo */
    padding: 0;
    z-index: 999;
  }

  .navbar .logo {
    height: 42px;
    margin: 0;
  }

  /* esconde menu no mobile */
  /* empurra o conteúdo pra não ficar embaixo da navbar */
  .hero {
    padding-top: 64px;
  }
  .navbar.shrink .logo {
    height: 44px;
  }

  .nav {
    display: none;
  }
  .btn-main {
    padding: 11px 24px;
    font-size: 12px;
  }
}

  .hero-banner {
    height: 45vh;
  }
  .hero-banner-overlay {
    position: absolute;
    inset: auto;
  }

  .hero-banner-content h2 {
    font-size: 32px;
    text-shadow:
  0 2px 6px rgba(0,0,0,0.6),
  0 4px 12px rgba(0,0,0,0.8),
  0 6px 20px rgba(0,0,0,0.9);
    color: #c9a24d;
  }

  .hero-banner-content p {
    font-size: 13px;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .hero-text h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 15px;
  }

  .benefits li {
    font-size: 14px;
  }

  .about-header h2,
  .benefits-header h2,
  .plans-header h2,
  .location-header h2 {
    font-size: 36px;
  }

  .about-header p,
  .benefits-header p,
  .plans-header p,
  .location-header p {
    font-size: 15px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-card span {
    font-size: 13px;
  }

  .stat-card {
    padding: 36px 24px;
  }

  .benefit-card h3 {
    font-size: 18px;
  }

  .benefit-card p {
    font-size: 14px;
  }

  .benefit-card {
    padding: 32px 24px;
  }

  .plan-card h3 {
    font-size: 22px;
  }

  .plan-card {
    padding: 40px 28px;
  }

  .plan-features li {
    font-size: 14px;
  }

  .location-info h3 {
    font-size: 24px;
  }

  .address {
    font-size: 15px;
  }

  .location-text {
    font-size: 14px;
  }

  .location-map iframe {
    height: 320px;
  }

  .cta-final {
    padding: 120px 24px;
  }

  .cta-final h2 {
    font-size: 40px;
  }

  .cta-final p {
    font-size: 15px;
  }

  .about-text p {
    font-size: 15px;
  }
.hero {
 margin-top: -20px; 
 /*(ANTES)background-attachment: fixed;
  transition: background-position 0.3s ease-out;*/
}
/* NAVBAR SHRINK */
.navbar.shrink {
  padding: 8px 48px;
}

.navbar.shrink .logo {
  height: 48px;
}

.navbar.shrink .btn-main {
  padding: 8px 20px;
  font-size: 11px;
}
/* INTRO SCREEN */
.intro-screen {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.intro-screen span {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  letter-spacing: 6px;
  color: #c9a24d;
  opacity: 0;
  animation: introText 1.6s ease forwards;
}

@keyframes introText {
  to {
    opacity: 1;
  }
}

.intro-screen.hide {
  opacity: 0;
  visibility: hidden;
}
/*apagar caso n gostar*/
h1, h2, h3 {
  text-shadow:
    0 0 6px rgba(201, 162, 77, 0.35),
    0 0 18px rgba(201, 162, 77, 0.15);
}
p, span {
  text-shadow: 0 1px 3px rgba(0,0,0,0.65);
}
.stat-number {
  text-shadow:
    0 0 10px rgba(201,162,77,0.55),
    0 0 30px rgba(201,162,77,0.25);
}
.stat-card {
  box-shadow:
    inset 0 0 40px rgba(255,255,255,0.03),
    0 20px 50px rgba(0,0,0,0.65);
}
.section-overlay {
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.85) 70%
  );
}
.benefits-section {
  padding: 140px 24px;
  position: relative;
}

.benefits-container {
  max-width: 1200px;
  margin: auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 90px;
}

.benefits-eyebrow {
  display: inline-block;
  color: #c9a24d;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.benefits-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 22px;
}

.benefits-header h2 span {
  color: #c9a24d;
}

.benefits-header p {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.benefit-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform .4s ease, box-shadow .4s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.65),
    inset 0 0 25px rgba(255,255,255,0.04);
}

/* TEXTO */
.benefit-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #c9a24d;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #d0d0d0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .benefits-header h2 {
    font-size: 36px;
  }

  .benefits-grid {
    gap: 22px;
  }

  .benefit-card {
    padding: 32px 24px;
  }
}
.plans-section {
  padding: 140px 24px;
}

.plans-container {
  max-width: 1200px;
  margin: auto;
}

.plans-header {
  text-align: center;
  margin-bottom: 90px;
}

.plans-eyebrow {
  display: inline-block;
  color: #c9a24d;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.plans-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 22px;
}

.plans-header h2 span {
  color: #c9a24d;
}

.plans-header p {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
}

/* GRID */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD BASE */
.plan-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 46px 34px;
  text-align: center;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.65),
    inset 0 0 40px rgba(255,255,255,0.04);
}

/* DESTAQUE */
.plan-card.featured {
  border-color: rgba(201,162,77,0.6);
  box-shadow:
    0 0 0 1px rgba(201,162,77,0.4),
    0 30px 90px rgba(0,0,0,0.7);
}

/* TITULOS */
.plan-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.plan-subtitle {
  display: block;
  font-size: 14px;
  color: #c9a24d;
  margin-bottom: 26px;
}

/* LISTA */
.plan-features {
  list-style: none;
  margin-bottom: 34px;
}

.plan-features li {
  font-size: 15px;
  margin-bottom: 14px;
  color: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* FAIXAS */
.belt {
  width: 26px;
  height: 6px;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 0 8px rgba(0,0,0,.6);
}

.belt.white { background: #f1f1f1; }
.belt.blue { background: #2e6cff; }
.belt.purple { background: #7b3fe4; }
.belt.brown { background: #6b3f2a; }
.belt.black { background: #0f0f0f; }

/* VARIAÇÕES SUAVES */
.plan-white h3 { color: #f1f1f1; }
.plan-blue h3 { color: #c9a24d; }
.plan-kids h3 { color: #c9a24d; }

/* RESPONSIVO */
@media (max-width: 768px) {
  .plans-header h2 {
    font-size: 36px;
  }
}
.location-section {
  padding: 140px 24px;
}

.location-container {
  max-width: 1200px;
  margin: auto;
}

.location-header {
  text-align: center;
  margin-bottom: 90px;
}

.location-eyebrow {
  display: inline-block;
  color: #c9a24d;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.location-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 22px;
}

.location-header h2 span {
  color: #c9a24d;
}

.location-header p {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
}

/* CONTEÚDO */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.location-info h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: #c9a24d;
}

.address {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #f1f1f1;
}

.location-text {
  font-size: 15px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 34px;
}

.location-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* MAPA */
.location-map {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}

.location-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 320px;
  }

  .location-header h2 {
    font-size: 36px;
  }
}
@keyframes bgDrift {
  0%   { background-position: center center; }
  50%  { background-position: 48% 52%; }
  100% { background-position: center center; }
}

body {
  animation: bgDrift 40s ease-in-out infinite;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
}
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  

  opacity: 0.32;
  filter: blur(10px) contrast(1.1) brightness(0.9);
}
.stat-value {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.stat-value::after {
  content: attr(data-suffix);
  font-size: 22px;
  margin-left: 4px;
  color: #c9a24d;
  font-weight: 600;
}
.cta-final {
  padding: 180px 28px;
  text-align: center;
}

.cta-final-content {
  max-width: 860px;
  margin: auto;
}

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 22px;
  text-shadow: 0 20px 55px rgba(0,0,0,.75);
}

.cta-final h2 span {
  color: #c9a24d;
}

.cta-final p {
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #cfcfcf;
  margin-bottom: 46px;
}

.cta-final-btn {
  padding: 18px 42px;
  font-size: 14px;
}
/* ================= CELULARES PEQUENOS (480px para baixo) ================= */
@media (max-width: 480px) {

  /* imagens responsivas */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* AGORA MOSTRANDO VÍDEO EM MOBILE COM OTIMIZAÇÃO */
  .bg-video {
    opacity: 0.20;
    filter: blur(12px) contrast(1.2) brightness(0.85);
  }

  .intro-screen span {
    font-size: 24px;
    letter-spacing: 2px;
  }

  body {
    padding-top: 80px;
  }

  .navbar {
    padding: 10px 14px;
  }

  .navbar.shrink {
    padding: 8px 14px;
  }

  .logo {
    height: 42px;
  }

  .navbar.shrink .logo {
    height: 38px;
  }

  .nav {
    display: none;
  }

  .btn-main {
    padding: 9px 18px;
    font-size: 11px;
    min-height: 40px;
    letter-spacing: 0.5px;
  }

  .hero-banner {
    height: 35vh;
    background-position: center center;
  }

  .hero-banner-content h2 {
    font-size: 24px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

  .hero-banner-content p {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .hero-content {
    padding: 35px 16px;
  }

  .hero-text {
    max-width: 100%;
    padding: 0 8px;
  }

  .hero-text h1 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .benefits {
    margin-bottom: 28px;
  }

  .benefits li {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .benefits li::before {
    margin-right: 10px;
  }

  section {
    padding: 0px 1px;
  }

  .about-header,
  .benefits-header,
  .plans-header,
  .location-header {
    margin-bottom: 60px;
  }

  .about-eyebrow,
  .benefits-eyebrow,
  .plans-eyebrow,
  .location-eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .about-header h2,
  .benefits-header h2,
  .plans-header h2,
  .location-header h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .about-header h2 span,
  .benefits-header h2 span,
  .plans-header h2 span,
  .location-header h2 span {
    display: block;
  }

  .about-header p,
  .benefits-header p,
  .plans-header p,
  .location-header p {
    font-size: 13px;
    line-height: 1.6;
  }

  .stat-card {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .stat-number {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .stat-card span {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .about-text p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .benefit-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .benefit-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .benefit-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .benefits-grid {
    gap: 20px;
  }

  .plan-card {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .plan-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .plan-subtitle {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .plan-features {
    margin-bottom: 22px;
  }

  .plan-features li {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .plans-grid {
    gap: 24px;
  }

  .belt {
    width: 20px;
    height: 5px;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .location-info h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .address {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .location-text {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .location-map iframe {
    height: 220px;
    border-radius: 16px;
  }

  .location-actions {
    gap: 12px;
  }

  .cta-final {
    padding: 80px 16px;
  }

  .cta-final h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .cta-final h2 span {
    display: block;
  }

  .cta-final p {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .cta-final-btn {
    padding: 12px 28px;
    font-size: 12px;
  }

  .about-container,
  .benefits-container,
  .plans-container,
  .location-container {
    padding: 0 8px;
  }

}

/* ================= CELULARES ULTRA PEQUENOS (320px para baixo) ================= */
@media (max-width: 360px) {

  .hero-text h1 {
    font-size: 20px;
  }

  .about-header h2,
  .benefits-header h2,
  .plans-header h2,
  .location-header h2 {
    font-size: 20px;
  }

  .cta-final h2 {
    font-size: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  section {
    padding: 50px 12px;
  }


}
/*PRECO*/
.plan-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(201,162,77,0.08);
  border: 1px solid rgba(201,162,77,0.25);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 20px 0;
  gap: 12px;
}

.price-option {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex: 1;
}

.price-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c9a24d;
}

.price-option.highlight .price-value {
  color: #e6c76a;
}

.price-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,162,77,0.3);
}
@media (max-width: 480px) {
  .plan-pricing {
    flex-direction: column;
    gap: 10px;
  }

  .price-divider {
    width: 60%;
    height: 1px;
  }

  .price-value {
    font-size: 1.6rem;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  z-index: 2;
}

/* efeito de notificação */
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.6);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* mobile ajuste fino */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}
.cadastro-section {
  padding: 120px 20px;
  background: radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 60%);
  text-align: center;
}

.cadastro-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
}

.cadastro-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.cadastro-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cadastro-container h2 span {
  color: #c9a66b;
}

.cadastro-container p {
  max-width: 640px;
  margin: 0 auto 40px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.cadastro-btn {
  padding: 16px 42px;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
  .cadastro-container {
    padding: 40px 24px;
  }

  .cadastro-container h2 {
    font-size: 32px;
}
}