:root {
  --orange: #F55618;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #343434;
  --light-gray: #666666;
  --bg-dark: #FFFFFF;
  --bg-card: #F7F7F7;
  --border: rgba(0, 0, 0, 0.09);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--black);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 2px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.nav-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }

.nav-logo-text {
  font-family: 'Gabarito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.nav-logo-text span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-family: 'Gabarito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.88;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-geo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(245, 86, 24, 0.06) 0%, transparent 50%),
    linear-gradient(315deg, rgba(245, 86, 24, 0.04) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 86, 24, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 86, 24, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 86, 24, 0.15);
  border: 1px solid rgba(245, 86, 24, 0.3);
  padding: 8px 16px;
  width: fit-content;
  font-family: 'Gabarito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: 'Gabarito', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
}

.hero-title .accent {
  color: var(--orange);
  display: block;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1.7;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Gabarito', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
}

.stat-label {
  font-size: 12px;
  color: var(--light-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-family: 'Gabarito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #e04510;
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.btn-secondary:hover {
  gap: 12px;
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* Hero right — VSL card */
.hero-right {
  position: relative;
}

.vsl-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
}

.vsl-header {
  background: #F0F0F0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.vsl-dots {
  display: flex;
  gap: 6px;
}

.vsl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.vsl-dot.r {
  background: #FF5F57;
}

.vsl-dot.y {
  background: #FEBC2E;
}

.vsl-dot.g {
  background: #28C840;
}

.vsl-title-bar {
  font-family: 'Gabarito', sans-serif;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
}

.vsl-screen {
  aspect-ratio: 16/9;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.vsl-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(245, 86, 24, 0.08) 0%, transparent 60%);
}

.vsl-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}

.vsl-play:hover {
  transform: scale(1.08);
}

.vsl-play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.vsl-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 40px 24px 20px;
  font-family: 'Gabarito', sans-serif;
  font-size: 14px;
  color: var(--light-gray);
  text-align: center;
  z-index: 1;
}

.vsl-overlay-text strong {
  color: var(--white);
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.vsl-footer {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.vsl-viewers {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
}

.vsl-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28C840;
  animation: pulse 2s infinite;
}

.vsl-badge {
  background: rgba(245, 86, 24, 0.15);
  border: 1px solid rgba(245, 86, 24, 0.3);
  padding: 4px 12px;
  font-family: 'Gabarito', sans-serif;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SECTION HEADER ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Gabarito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: 'Gabarito', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

.section-title .accent {
  color: var(--orange);
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.how-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(245, 86, 24, 0.02) 50%, transparent 100%);
}

.how-content {
  max-width: 1200px;
  margin: 0 auto;
}

.how-header {
  margin-bottom: 72px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(245, 86, 24, 0.4);
}

.step-num {
  font-family: 'Gabarito', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(245, 86, 24, 0.06);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 16px;
  letter-spacing: -0.04em;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 86, 24, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.step-title {
  font-family: 'Gabarito', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.step-desc {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.65;
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 2px;
  height: 40px;
  background: var(--orange);
  transform: translateY(-50%);
  z-index: 1;
}

/* ── WHY AVILLE ── */
.why-section {
  padding: 120px 60px;
  background: #F7F7F7;
}

.why-content {
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

.why-visual {
  position: relative;
}

.why-main-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.why-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}

.why-big-num {
  font-family: 'Gabarito', sans-serif;
  font-size: 96px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.why-big-label {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 32px;
}

.why-mini-stats {
  display: flex;
  gap: 32px;
}

.why-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-mini-stat-num {
  font-family: 'Gabarito', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
}

.why-mini-stat-label {
  font-size: 11px;
  color: var(--light-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why-floating {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  padding: 20px 24px;
  font-family: 'Gabarito', sans-serif;
}

.why-floating-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
}

.why-floating-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.why-feature:hover {
  border-color: rgba(245, 86, 24, 0.3);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 86, 24, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.why-feature-title {
  font-family: 'Gabarito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}

.why-feature-desc {
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 120px 60px;
}

.testimonials-content {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.3s;
}

.testimonial:hover {
  border-color: rgba(245, 86, 24, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.star {
  color: var(--orange);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 86, 24, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gabarito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

.author-name {
  font-family: 'Gabarito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.author-car {
  font-size: 12px;
  color: var(--light-gray);
}

.testimonial-tag {
  display: inline-block;
  background: rgba(245, 86, 24, 0.12);
  border: 1px solid rgba(245, 86, 24, 0.2);
  padding: 4px 10px;
  font-family: 'Gabarito', sans-serif;
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
}

/* ── FAQ ── */
.faq-section {
  padding: 120px 60px;
  background: #F7F7F7;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-q-text {
  font-family: 'Gabarito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  transition: color 0.2s;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--orange);
}

.faq-item.open .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item.open .faq-q-text {
  color: var(--orange);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a-text {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.75;
  padding-bottom: 24px;
  padding-right: 44px;
}

/* ── CTA FINAL ── */
.cta-section {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 86, 24, 0.06) 0%, transparent 60%);
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-pretitle {
  font-family: 'Gabarito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.cta-title {
  font-family: 'Gabarito', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--black);
}

.cta-subtitle {
  font-size: 17px;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: 'Gabarito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.btn-whatsapp:hover {
  opacity: 0.88;
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
}

.footer-brand {
  font-family: 'Gabarito', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.footer-brand span {
  color: var(--orange);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 13px;
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--black);
}

.footer-copy {
  font-size: 12px;
  color: var(--gray);
}

/* ── LOCATION BADGE ── */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  padding: 6px 14px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--light-gray);
  letter-spacing: 0.06em;
}

.location-badge svg {
  width: 12px;
  height: 12px;
  color: var(--orange);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── DIVIDER ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 16px 32px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 100px 32px 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-section,
  .why-section,
  .testimonials-section,
  .faq-section,
  .cta-section {
    padding: 80px 32px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 32px;
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}