/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

:root {
  --bg: #ffffff;
  --bg-gray: #f5f5f7;
  --bg-dark: #0f0f12;
  --text: #111;
  --text-soft: #555;
  --muted: #888;
  --accent: #ff3b30;        /* vermelho energético */
  --accent-2: #ff6b3d;
  --yellow: #ffd60a;
  --line: #ececec;
  --line-dark: rgba(255,255,255,0.12);
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

h1, h2, h3, h4 {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #0a0a0a;
}
h1 { font-size: clamp(1.9rem, 7vw, 4.4rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 3rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }

p { color: var(--text-soft); }

.hl {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hl::after {
  content: '';
  position: absolute;
  bottom: 4%;
  left: -2%;
  width: 104%;
  height: 18%;
  background: rgba(255,59,48,0.18);
  z-index: -1;
  border-radius: 4px;
}
.hl-yellow {
  color: var(--yellow);
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: #0a0a0a;
  border: 1.5px solid #0a0a0a;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}
.tag--dark { background: #0a0a0a; color: #fff; }
.tag--light { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: #fff; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 100px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,59,48,0.3);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255,59,48,0.45);
  background: #e62b22;
}
.btn--ghost {
  background: transparent;
  color: #0a0a0a;
  border-color: #0a0a0a;
}
.btn--ghost:hover { background: #0a0a0a; color: #fff; }
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn--large { padding: 1.05rem 1.8rem; font-size: 0.95rem; }
.btn--full { width: 100%; }

.link-accent {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.link-accent:hover { gap: 0.6rem; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s;
  background: transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo__mark {
  width: 40px; height: 40px;
  background: #0a0a0a;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  border-radius: 10px;
  transform: rotate(-4deg);
}
.logo__text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.95rem;
  color: #0a0a0a;
  letter-spacing: 0.05em;
}
.logo--light .logo__text { color: #fff; }
.logo--light .logo__mark { background: var(--accent); color: #fff; }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #0a0a0a;
  transition: color 0.2s;
}
.nav a:not(.btn):hover { color: var(--accent); }
.nav .btn--accent { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: #0a0a0a;
  border-radius: 4px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }
  .nav.open { right: 0; }
  .nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 8rem 0 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-gray) 100%);
  overflow: hidden;
  max-width: 100vw;
}
.hero__text p { word-break: break-word; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 4rem;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: stretch; }
}
.hero__text h1 { margin-bottom: 1.3rem; }
.hero__text p { font-size: 1.1rem; margin-bottom: 2rem; max-width: 540px; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.hero__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatars { display: flex; }
.avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.hero__social { flex-wrap: wrap; }
.social-text { min-width: 0; flex: 1; }
.avatars img:first-child { margin-left: 0; }
.social-text strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  color: #0a0a0a;
  font-size: 1rem;
}
.social-text span {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 4/5;
  max-width: 100%;
}
@media (max-width: 768px) {
  .hero__media {
    min-height: 380px;
    aspect-ratio: 1;
    padding: 1.5rem 1rem;
  }
  .hero__photo--main { inset: 0 4% 22% 4%; border-width: 6px; }
  .hero__photo--small { width: 50%; left: 4%; bottom: 0; border-width: 6px; }
  .hero__badge {
    padding: 0.7rem 0.9rem;
    bottom: 6%; right: 4%;
    transform: rotate(4deg);
  }
  .hero__badge strong { font-size: 1.4rem; }
  .hero__badge span { font-size: 0.62rem; }
  .hero__sticker {
    padding: 0.6rem 0.8rem;
    top: 2%; right: 4%;
    transform: rotate(-3deg);
    max-width: 60%;
  }
  .hero__sticker strong { font-size: 0.85rem; }
  .hero__sticker span { font-size: 0.65rem; }
  .hero__sticker .star { font-size: 1.1rem; }
}
@media (min-width: 900px) {
  .hero__media { aspect-ratio: auto; min-height: 600px; }
}
.hero__photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
}
.hero__photo--main {
  inset: 0 0 22% 8%;
  border: 8px solid #fff;
  z-index: 1;
}
.hero__photo--small {
  width: 55%;
  aspect-ratio: 4/3;
  bottom: 0; left: 0;
  border: 8px solid #fff;
  transform: rotate(-3deg);
  z-index: 2;
}
.hero__badge {
  position: absolute;
  bottom: 8%; right: 4%;
  background: var(--yellow);
  color: #0a0a0a;
  padding: 1.2rem 1.4rem;
  border-radius: 20px;
  text-align: center;
  transform: rotate(6deg);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  z-index: 3;
}
.hero__badge strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  line-height: 1;
}
.hero__badge span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  display: block;
}
.hero__sticker {
  position: absolute;
  top: 4%; right: 2%;
  background: #0a0a0a;
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  transform: rotate(-5deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__sticker .star {
  font-size: 1.4rem;
  color: var(--yellow);
}
.hero__sticker strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  line-height: 1;
}
.hero__sticker span {
  font-size: 0.7rem;
  color: #b8b8b8;
  font-weight: 600;
}

.hero__strip {
  background: #0a0a0a;
  color: #fff;
  padding: 1.2rem 0;
  overflow: hidden;
}
.hero__strip-inner {
  display: flex;
  gap: 3rem;
  animation: scroll-strip 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.hero__strip-inner span {
  font-weight: 600;
  font-size: 0.95rem;
}
@keyframes scroll-strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section { padding: 5rem 0; }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark p { color: #b8b8b8; }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section__head p {
  font-size: 1.05rem;
  margin-top: 0.8rem;
}
.section__head--light h2 { color: #fff; }

/* ============ AUTHORITY ============ */
.auth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.auth-card {
  background: #fff;
  border: 2px solid var(--line);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.auth-card:hover {
  transform: translateY(-6px);
  border-color: #0a0a0a;
  box-shadow: 8px 8px 0 #0a0a0a;
}
.auth-card--accent {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}
.auth-card--accent h3 { color: #fff; }
.auth-card--accent p { color: #b8b8b8; }
.auth-card--accent:hover { box-shadow: 8px 8px 0 var(--accent); }
.auth-card__num {
  font-family: 'Archivo Black', sans-serif;
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.auth-card h3 { margin-bottom: 0.7rem; }
.auth-card p { font-size: 0.94rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: #0a0a0a;
  color: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
}
@media (min-width: 700px) {
  .stats { grid-template-columns: repeat(4, 1fr); padding: 3rem 2rem; }
}
.stat {
  text-align: center;
  position: relative;
}
.stat strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--yellow);
  line-height: 1;
  display: inline-block;
}
.stat small {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--yellow);
}
.stat span {
  display: block;
  font-size: 0.85rem;
  color: #b8b8b8;
  margin-top: 0.6rem;
  font-weight: 500;
}

/* ============ BENEFITS ============ */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.benefit {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s;
  border: 2px solid transparent;
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: #0a0a0a;
}
.benefit__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.benefit h3 { margin-bottom: 0.5rem; }
.benefit p { font-size: 0.94rem; }

/* ============ MODALIDADES ============ */
.modalidades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.mod-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--line);
  transition: all 0.3s;
}
.mod-card:hover {
  transform: translateY(-6px);
  border-color: #0a0a0a;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.mod-card__img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}
.mod-card__body { padding: 1.5rem; }
.mod-card__age {
  display: inline-block;
  background: var(--bg-gray);
  color: #0a0a0a;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mod-card h3 { margin-bottom: 0.5rem; }
.mod-card p { font-size: 0.92rem; margin-bottom: 1rem; }

/* ============ AGENDA ============ */
.agenda-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.filter:hover { border-color: #fff; }
.filter.active {
  background: var(--yellow);
  color: #0a0a0a;
  border-color: var(--yellow);
}

.agenda-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  padding: 1rem;
}
.agenda {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 6px;
}
.agenda thead th {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.85rem;
  color: var(--yellow);
  padding: 0.8rem 0.5rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.agenda tbody th {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.82rem;
  color: #fff;
  background: rgba(255,255,255,0.06);
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
}
.agenda td {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 0.6rem 0.4rem;
  text-align: center;
  vertical-align: middle;
  min-width: 90px;
}
.slot {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  width: 100%;
  transition: all 0.3s;
  cursor: default;
}
.slot.kids { background: #4cc9f0; color: #001233; }
.slot.iniciantes { background: #80ed99; color: #003322; }
.slot.adulto { background: #ffd60a; color: #3a2f00; }
.slot.competicao { background: var(--accent); color: #fff; }
.slot.dimmed { opacity: 0.15; }

.agenda-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.dot-kids { background: #4cc9f0; }
.dot-iniciantes { background: #80ed99; }
.dot-adulto { background: #ffd60a; }
.dot-competicao { background: var(--accent); }

.agenda-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}
.agenda-cta p {
  color: #b8b8b8;
  margin-bottom: 1rem;
}

/* ============ ABOUT ============ */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.about__media {
  position: relative;
  aspect-ratio: 4/5;
}
.about__img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about__img--1 {
  inset: 0 25% 25% 0;
  border: 5px solid #fff;
}
.about__img--2 {
  width: 55%; aspect-ratio: 1;
  bottom: 0; right: 0;
  border: 5px solid #fff;
}
.about__sticker {
  position: absolute;
  top: -5%; right: 5%;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.3rem;
  border-radius: 18px;
  text-align: center;
  transform: rotate(6deg);
  box-shadow: 0 10px 25px rgba(255,59,48,0.4);
  z-index: 2;
}
.about__sticker span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about__sticker strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}
.about__content h2 { margin-bottom: 1.2rem; }
.about__content p { margin-bottom: 1.5rem; font-size: 1.05rem; }
.about__list { margin-bottom: 2rem; }
.about__list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: #333;
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}
.about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.2rem;
}

/* ============ GALLERY ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.gallery__item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.gallery__item:hover { transform: scale(1.03); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.gallery__item span {
  position: absolute;
  bottom: 1rem; left: 1rem;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--accent);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.stars {
  color: var(--yellow);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 1rem;
  -webkit-text-stroke: 1px #f5b800;
}
.testimonial p {
  color: #222;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.testimonial footer img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial strong { display: block; color: #0a0a0a; font-size: 0.95rem; }
.testimonial span { font-size: 0.82rem; color: var(--muted); }

/* ============ CTA FINAL ============ */
.cta-final {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1f 100%);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,59,48,0.3), transparent 70%);
  top: -100px; right: -100px;
  filter: blur(40px);
}
.cta-final__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .cta-final__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.cta-final__text h2 { color: #fff; margin-bottom: 1.2rem; }
.cta-final__text p { color: #c8c8c8; font-size: 1.1rem; margin-bottom: 2rem; }
.cta-final__perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cta-final__perks span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-form {
  background: #fff;
  color: #0a0a0a;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.lead-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.4rem;
}
.field input,
.field select {
  background: var(--bg-gray);
  border: 2px solid transparent;
  color: #0a0a0a;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.lead-form .btn { margin-top: 0.6rem; }
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.8rem;
}

/* ============ FOOTER ============ */
.footer {
  background: #0a0a0a;
  color: #c8c8c8;
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 700px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer__brand p {
  margin-top: 1rem;
  color: #888;
  font-size: 0.92rem;
  max-width: 320px;
}
.footer__col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer__col p {
  color: #b8b8b8;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}
.social {
  display: block;
  color: #b8b8b8;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.social:hover { color: var(--accent); }
.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: #666;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
