:root {
  --bg: #06172d;
  --bg-soft: #0a2648;
  --bg-card: rgba(6, 23, 45, 0.72);
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #0a1a2f;
  --text-light: #dbe5f3;
  --text-muted: #9db1cc;
  --primary: #f6c21f;
  --primary-strong: #ffcf39;
  --stroke: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #071a34 0%, #f1f5fb 22%, #eef3f8 78%, #06172d 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus { left: 12px; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}
.section-dark {
  color: var(--text-light);
  background: radial-gradient(circle at top left, rgba(24, 65, 122, 0.7), rgba(6, 23, 45, 0.96));
}
.sobre{
  background-image: url('../assets/img/sobre.png');
  content: "";
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.08);
  opacity: 0.22;
  pointer-events: none;
}
.has-parallax::before {
  content: "";
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.08);
  opacity: 0.22;
  pointer-events: none;
}
.hero.has-parallax::before,
.about.has-parallax::before,
.live-classes.has-parallax::before,
.instagram.has-parallax::before,
.cta-banner.has-parallax::before {
  background-image: url('../assets/img/bg_hero.png');
  filter: blur(2px) saturate(1.1);
}

.live-classes {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(246, 194, 31, 0.12), transparent 32%),
    linear-gradient(180deg, #06172d 0%, #071f3d 100%);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}

.reel-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: #06172d;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.reel-card:hover,
.reel-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.34);
  filter: brightness(1.05);
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 23, 45, 0.02), rgba(6, 23, 45, 0.38)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.reel-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #06172d;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* LIGHTBOX */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.video-lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 24, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: min(420px, 92vw);
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lightbox-content video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #06172d;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.24s ease, filter 0.24s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  transform: scale(1.05);
  filter: brightness(0.96);
}

body.lightbox-open {
  overflow: hidden;
}
@media (max-width: 1160px) {
  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .reel-card {
    border-radius: 18px;
  }

  .reel-play {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  .lightbox-content {
    width: min(390px, 94vw);
    border-radius: 22px;
  }
}

@media (max-width: 460px) {
  .reels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lightbox-close {
    top: 0.8rem;
    right: 0.8rem;
    width: 44px;
    height: 44px;
  }
}
.testimonials {
  position: relative;
  background: #071a34;
}

.testimonials.has-parallax::before {
  content: "";
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 18, 37, 0.94) 0%,
      rgba(4, 18, 37, 0.88) 28%,
      rgba(4, 18, 37, 0.68) 58%,
      rgba(4, 18, 37, 0.44) 100%
    ),
    url("../assets/img/avalia.png") center center / cover no-repeat;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.08);
  opacity: 1;
  pointer-events: none;
}

.testimonials .section-heading {
  margin-bottom: 2.3rem;
}

.testimonials .eyebrow {
  color: var(--primary);
}

.testimonials .section-heading h2 {
  color: #ffffff;
}

.testimonials .section-heading h2 span {
  color: var(--primary);
}

.testimonials .section-description {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #d8e4f3;
  line-height: 1.7;
  font-size: 1.03rem;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.google-review-card {
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: #06172d;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.google-review-card.featured-review {
  grid-column: span 2;
}

.testimonial-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #0a2a50, #06172d);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(6, 23, 45, 0.22);
}

.reviewer-info strong {
  display: block;
  color: #06172d;
  font-size: 1rem;
  line-height: 1.25;
}

.reviewer-info small {
  display: block;
  margin-top: 0.25rem;
  color: #64758b;
  font-size: 0.8rem;
  line-height: 1.35;
}

.google-review-logo {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.google-review-logo svg {
  width: 24px;
  height: 24px;
}

.stars {
  margin-bottom: 0.85rem;
  color: #fbbc05;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.google-review-card p {
  margin: 0;
  color: #26384e;
  line-height: 1.7;
  font-size: 0.96rem;
}

.testimonials-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.3rem;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 58px;
  padding: 1rem 1.6rem;
  border-radius: 16px;
  background: #ffffff;
  color: #06172d;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--primary);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.btn-google:hover,
.btn-google:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
  filter: brightness(1.03);
}

.google-button-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
}

.google-button-icon svg {
  width: 26px;
  height: 26px;
}
@media (max-width: 1160px) {
  .google-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .google-review-card.featured-review {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .google-reviews-grid {
    grid-template-columns: 1fr;
  }

  .google-review-card.featured-review {
    grid-column: span 1;
  }

  .testimonial-head {
    grid-template-columns: auto 1fr auto;
    gap: 0.7rem;
  }

  .reviewer-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.1rem;
  }

  .google-review-logo {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .google-review-logo svg {
    width: 22px;
    height: 22px;
  }

  .testimonials-button-wrap .btn-google {
    width: 100%;
    max-width: 360px;
  }
}

.section > .container { position: relative; z-index: 1; }

.method {
  position: relative;
  background: #071a34;
}

.method.has-parallax::before {
  content: "";
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 18, 37, 0.92) 0%,
      rgba(4, 18, 37, 0.82) 28%,
      rgba(4, 18, 37, 0.60) 58%,
      rgba(4, 18, 37, 0.34) 100%
    ),
    url("../assets/img/metodobg.png") center center / cover no-repeat;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.08);
  opacity: 1;
  pointer-events: none;
}

.method .section-heading h2 {
  color: #ffffff;
}

.method .section-heading h2 span {
  color: var(--primary);
}

.problems {
  position: relative;
  background: #071a34;
}

.problems.has-parallax::before {
  content: "";
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 18, 37, 0.88) 0%,
      rgba(4, 18, 37, 0.78) 28%,
      rgba(4, 18, 37, 0.56) 55%,
      rgba(4, 18, 37, 0.28) 100%
    ),
    url("../assets/img/medodedirigirbh.png") center center / cover no-repeat;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.08);
  opacity: 1;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(4, 18, 37, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav a {
  color: #dce8f5;
  font-size: 0.95rem;
  font-weight: 600;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--primary); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  transition: transform .24s ease, filter .24s ease, background-color .24s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn-primary {
  background: var(--primary);
  color: #06172d;
  box-shadow: 0 12px 22px rgba(246, 194, 31, 0.25);
}
.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}
.btn-large { min-width: 320px; }

.hero {
  padding-top: 5.2rem;
  padding-bottom: 5rem;
  min-height: calc(100vh - 86px);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    
    radial-gradient(circle at top right, rgba(246,194,31,0.18), transparent 24%);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero h1 span { color: var(--primary); }
.hero-text {
  max-width: 640px;
  margin: 1.4rem 0 0;
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat-image {
  width: 58px;
  height: 58px;
  min-width: 58px;
  object-fit: cover;
  border-radius: 50%;
  padding: 4px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.stat-card strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
}

.stat-card span {
  display: block;
  color: #dce5f3;
  font-size: 0.92rem;
}
@media (max-width: 640px) {
  .stat-card {
    padding: 1rem;
  }

  .stat-image {
    width: 54px;
    height: 54px;
    min-width: 54px;
  }
}

.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(246, 194, 31, 0.6);
}
.hero-frame img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;
}
.signature-box {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(5, 20, 38, 0.1), rgba(5, 20, 38, 0.66));
}
.signature {
  margin: 0;
  font-family: "Yellowtail", cursive;
  color: var(--primary);
  font-size: 3rem;
  line-height: 1;
}
.signature-role {
  margin: 0.35rem 0 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 2rem;
}
.section-heading.centered {
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-heading h2 span { color: var(--primary); }
.subtitle {
  margin: 0.8rem 0 0;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.problem-card {
  min-height: 190px;
  padding: 1.4rem 1.2rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(9, 37, 70, 0.08);
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(9, 37, 70, 0.08);
  text-align: center;
}
.problem-card span {
  font-size: 2rem;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(5, 30, 57, 0.05);
}
.problem-card h3 {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.45;
}
.helper-text {
  margin: 1.25rem 0 0;
  text-align: center;
  font-weight: 600;
  color: #163961;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 2rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.watermark-logo {
  position: absolute;
  left: 0;
  top: -1rem;
  width: 140px;
  opacity: 0.88;
}
.watermark-logo img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.about-photo-card {
  margin-top: 4rem;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.about-photo-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}
.about-content p {
  margin: 0 0 1rem;
  color: var(--text-light);
  font-size: 1.03rem;
  line-height: 1.8;
}
.about-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.badge-item {
  padding: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}
.badge-item strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.badge-item span { color: var(--text-muted); font-size: 0.92rem; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.method-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(7, 31, 58, 0.96), rgba(4, 17, 34, 0.92));
  border: 1px solid rgba(246, 194, 31, 0.18);
  color: #fff;
  box-shadow: var(--shadow);
}
.method-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #06172d;
  font-weight: 800;
}
.method-card h3 { margin: 0 0 0.85rem; font-size: 1.2rem; }
.method-card p { margin: 0; color: #d8e4f3; line-height: 1.65; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.video-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
}
.video-thumb {
  position: relative;
  min-height: 180px;
  background-size: cover;
  background-position: center;
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,17,34,0.12), rgba(4,17,34,0.48));
}
.video-thumb-1,
.video-thumb-2,
.video-thumb-3,
.video-thumb-4,
.video-thumb-5 {
  background-image: url('../assets/img/anderson-hero.jpg');
}
.play, .time {
  position: absolute;
  z-index: 1;
}
.play {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: #06172d;
  font-weight: 800;
}
.time {
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(5,20,38,0.8);
  color: #fff;
}
.video-card h3 {
  margin: 1rem 1rem 0.35rem;
  font-size: 1rem;
  color: #fff;
}
.video-card p {
  margin: 0 1rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.testimonial-card {
  padding: 1.4rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(7, 31, 58, 0.96), rgba(5, 24, 45, 0.92));
  color: #fff;
  border: 1px solid rgba(246, 194, 31, 0.16);
  box-shadow: 0 15px 30px rgba(10, 26, 47, 0.12);
}
.testimonial-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.testimonial-head span { color: var(--primary); }
.testimonial-card p {
  color: #dce8f5;
  line-height: 1.7;
}
.testimonial-card blockquote {
  margin: 1rem 0 0;
  padding: 1rem;
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.ig-card {
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  padding: 1rem;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4,17,34,0.15), rgba(4,17,34,0.84)),
    url('../assets/img/anderson-hero.jpg') center/cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
.ig-card span {
  font-weight: 800;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.section-cta { margin-top: 2rem; }

.cta-banner {
  background: linear-gradient(180deg, rgba(6,23,45,0.9), rgba(6,23,45,0.98));
}
.cta-banner::before {
  opacity: 0.18 !important;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.cta-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}
.cta-content h2 span { color: var(--primary); }
.cta-content p {
  margin: 1rem 0 0;
  max-width: 700px;
  color: #d7e3f2;
  line-height: 1.8;
}
.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.cta-action p {
  margin: 0;
  color: #dce8f5;
  font-weight: 600;
}

.site-footer {
  padding: 2.5rem 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer-brand img {
  width: 82px;
  height: 82px;
  border-radius: 18px;
}
.footer-brand strong,
.footer-about strong { color: #fff; }
.footer-brand p,
.footer-about p,
.footer-contact span,
.footer-contact a {
  color: #d7e3f2;
  line-height: 1.7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-bottom p { margin: 0; color: var(--text-muted); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-delay { transition-delay: .12s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .hero-grid,
  .about-grid,
  .cta-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 720px; }
  .hero-frame img { height: 620px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 86px 0 auto 0;
    background: rgba(4,18,37,0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1rem;
    transform: translateY(-150%);
    transition: transform .28s ease;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-toggle { display: inline-block; }
  .header-actions .btn { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { order: 1; }
  .hero-media { order: 2; }
  .hero-frame img { height: 520px; }
  .problem-grid,
  .hero-stats,
  .about-badges,
  .video-grid,
  .testimonial-grid,
  .instagram-grid,
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .brand span { font-size: 0.95rem; }
  .brand img { width: 48px; height: 48px; }
  .header-wrap { min-height: 78px; }
  .main-nav { inset-top: 78px; }
  .hero {
    padding-top: 3.2rem;
    padding-bottom: 3.6rem;
  }
  .hero h1 { font-size: 2.6rem; }
  .hero-text { font-size: 1rem; }
  .hero-actions,
  .hero-stats,
  .problem-grid,
  .about-badges,
  .method-grid,
  .video-grid,
  .testimonial-grid,
  .instagram-grid { grid-template-columns: 1fr; }
  .hero-frame img { height: 420px; }
  .signature-box {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .signature { font-size: 2.2rem; }
  .problem-card { min-height: auto; }
  .watermark-logo {
    position: static;
    width: 110px;
    margin-bottom: 1rem;
  }
  .about-photo-card { margin-top: 0; }
  .about-photo-card img { min-height: 380px; }
  .cta-grid { gap: 1.5rem; }
  .btn-large { min-width: 100%; }
  .cta-action { align-items: stretch; text-align: center; }
  .footer-grid { gap: 1.4rem; }
}
section[id] {
  scroll-margin-top: 110px;
}
.electric-car {
  position: relative;
  background: #06172d;
  color: #ffffff;
}

.electric-car.has-parallax::before {
  content: "";
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 18, 37, 0.94) 0%,
      rgba(4, 18, 37, 0.86) 32%,
      rgba(4, 18, 37, 0.60) 62%,
      rgba(4, 18, 37, 0.38) 100%
    ),
    url("../assets/img/bg-carro-eletrico-dirija-bh.png") center center / cover no-repeat;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.08);
  opacity: 1;
  pointer-events: none;
}

.electric-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.electric-content h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.electric-content h2 span {
  color: var(--primary);
}

.electric-content p {
  max-width: 680px;
  margin: 1rem 0 0;
  color: #d8e4f3;
  font-size: 1.03rem;
  line-height: 1.8;
}

.electric-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.electric-benefits article {
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.electric-benefits article span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  border-radius: 14px;
  background: rgba(246, 194, 31, 0.14);
  font-size: 1.3rem;
}

.electric-benefits article strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.electric-benefits article small {
  display: block;
  color: #b8c9de;
  line-height: 1.55;
}

.electric-actions {
  margin-top: 2rem;
}

.electric-media {
  position: relative;
}

.electric-photo-card {
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid rgba(246, 194, 31, 0.42);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
}

.electric-photo-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.electric-badge {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--primary);
  color: #06172d;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  border: 6px solid rgba(255, 255, 255, 0.92);
}

.electric-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.electric-badge span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .electric-grid {
    grid-template-columns: 1fr;
  }

  .electric-media {
    max-width: 720px;
  }

  .electric-photo-card img {
    height: 460px;
  }
}

@media (max-width: 640px) {
  .electric-benefits {
    grid-template-columns: 1fr;
  }

  .electric-photo-card img {
    height: 360px;
  }

  .electric-badge {
    width: 104px;
    height: 104px;
    left: 1rem;
    bottom: 1rem;
  }

  .electric-badge strong {
    font-size: 1.55rem;
  }

  .electric-badge span {
    font-size: 0.78rem;
  }
}