/* ============ TOKENS ============ */
:root {
  /* Yellows */
  --yellow: #FFED3E;
  --yellow-400: #FDDE12;
  --yellow-500: #ECC306;
  --yellow-600: #CC9802;

  /* Greens */
  --green-50: #F8FCE9;
  --green-200: #CBE86E;
  --green-main: #98C224;
  --green-700: #587417;
  --green-950: #1F2B08;

  /* Reds */
  --red-light: #F15242;
  --red-main: #DF3B2A;
  --red-dark: #9A261A;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F6F6F6;
  --gray-400: #888888;
  --gray-600: #5D5D5D;
  --gray-800: #454545;
  --gray-1000: #1E1E1E;
  --gray-1200: #141414;
  --black: #000000;

  /* Legacy aliases */
  --black-main: var(--gray-1000);
  --black-1200: var(--gray-1200);
  --neutral-50: var(--gray-50);
  --neutral-400: var(--gray-400);
  --neutral-800: var(--gray-800);

  --font-primary: 'Sofia Sans Condensed', sans-serif;
  --font-secondary: 'IBM Plex Sans', sans-serif;
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  background: var(--black-1200);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.4;
  overflow-x: hidden;
  padding-top: 100px;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
}

ul,
ol {
  list-style: none;
}

/* ============ UTILITY ============ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.divider {
  height: 1px;
  background: var(--gray-1000);
  max-width: var(--max-w);
  margin: 0 auto;
}

.label {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: var(--green-main);
  line-height: 1;
}

.heading-xl {
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.text-muted {
  font-family: var(--font-secondary);
  color: var(--neutral-400);
}

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

.frame-card {
  width: 550px;
  height: 570px;
  border-radius: 32px;
  background: linear-gradient(137deg, var(--gray-1200) 0%, var(--gray-1000) 100%);
  box-shadow: 2px 2px 0 0 var(--gray-1000) inset;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 39px 29px 0 30px;
  position: relative;
  overflow: visible;
}

/* Depth Shapes (lateral stack effect) */
.frame-card::before,
.frame-card::after {
  content: "";
  position: absolute;
  background: linear-gradient(87deg, rgba(0, 0, 0, 0.0) 0%, var(--gray-1200) 10%, var(--gray-1000) 100%);
  border-radius: 0 32px 32px 0;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}

.frame-card::before {
  width: 24px;
  height: 509px;
  right: -24px;
}

.frame-card::after {
  width: 24px;
  height: 462px;
  right: -48px;
  opacity: 0.9;
}


/* ============ BUTTONS ============ */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 450;
  transition: all 0.2s;
  border: none;
}

.btn-wrapper {
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--white);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 450;
  transition: all 0.2s;
  border: 1px solid transparent;
  background: transparent;
  color: var(--white);
}

.btn-primary:hover,
.btn-secondary:hover {
  background: linear-gradient(180deg, var(--white) 54.17%, var(--gray-400) 100%);
  border: 1px solid var(--white);
  color: var(--black-main);
}

/* ============ HEADER ============ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  max-width: 1440px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--black-1200);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--black-main);
}

.header-logo {
  width: 111px;
  height: auto;
  display: block;
}

.header a:has(.header-logo) {
  -webkit-tap-highlight-color: transparent;
  display: flex;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 56px;
  font-size: 20px;
  font-weight: 400;
}

.header-nav a:hover {
  color: var(--green-main);
  transition: color .2s;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 20px;
  font-weight: 400;
}

.header-right a {
  text-decoration: underline;
}

.menu-btn {
  display: none;
  width: 24px;
  height: 24px;
}

.menu-btn img {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mobile-menu-btn .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.mobile-menu-btn.is-open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.is-open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.is-open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mobile-menu.open {
  display: block;
  pointer-events: auto;
}

.mobile-menu-inner {
  width: 100%;
  background: var(--gray-1200);
  padding: 88px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 0 0 32px 32px;
  animation: slideDown 0.3s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

@keyframes slideDown {
  from { transform: translateY(-110%); }
  to   { transform: translateY(0); }
}

.mobile-menu-header {
  position: relative;
}

.mobile-menu-title {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}

.mobile-menu-sub {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--neutral-400);
  margin-top: 8px;
  line-height: 1.5;
}

.mobile-menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-800);
  color: var(--neutral-400);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.mobile-menu-close:hover {
  color: var(--white);
  border-color: var(--white);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  background: var(--gray-1000);
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-nav a:first-child {
  background: var(--green-main);
  color: var(--black);
}

.mobile-menu-nav a:first-child:hover {
  background: var(--green-200);
}

.mobile-menu-nav a:not(:first-child):hover {
  background: var(--gray-800);
}

.menu-item-icon {
  font-size: 20px;
  line-height: 1;
}

.mobile-menu-microcopy {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: var(--neutral-400);
  text-align: center;
}


/* ============ HERO ============ */
.hero {
  padding: 96px 0;
  text-align: center;
}

.hero .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.hero .label {
  font-size: 30px;
  color: var(--green-main);
}

.hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.85;
  text-transform: uppercase;
  max-width: 996px;
  margin: 24px auto;
}

.hero h1 .light {
  font-weight: 300;
  font-style: italic;
}

.hero h1 .dot {
  color: var(--green-700);
}

.hero-sub {
  max-width: 620px;
  margin: 24px auto 32px;
  color: var(--neutral-400);
  font-size: 24px;
  line-height: 1.1;
}

.hero .btn-group {
  justify-content: center;
}

/* ============ COMO FUNCIONA ============ */
.como-funciona {
  padding: 80px 0;
}

.como-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.como-top h2 {
  font-size: clamp(36px, 4vw, 48px);
}

.como-top h2 .green {
  color: var(--green-main);
}

.como-img {
  width: 550px;
  height: 570px;
}

.como-img img {
  width: 100%;
  object-fit: contain;
}

.steps-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.step {
  padding: 32px;
  border-radius: 16px;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.step-bar {
  height: 4px;
  background: var(--gray-800);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.step-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--green-main);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.step.active .step-bar::after {
  animation: progressBar 10s linear forwards;
}

@keyframes progressBar {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.step-num {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-top: 20px;
  transition: color 0.3s ease;
}

.step.active .step-num {
  color: var(--green-main);
}

.step h3 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 12px;
  line-height: 1.2;
}

.step-desc {
  color: var(--neutral-400);
  font-size: 18px;
  margin-top: 16px;
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.step.active .step-desc {
  opacity: 1;
  visibility: visible;
}

/* ============ SERVICES ============ */
.services {
  padding: 80px 0;
}

.services-header {
  max-width: 792px;
  margin: 0 auto;
  text-align: center;
}

.services-header h2 {
  font-size: clamp(36px, 4vw, 48px);
  margin-top: 24px;
}

.services-header h2 .dot {
  color: var(--green-main);
}

.services-header p {
  color: var(--neutral-400);
  margin-top: 24px;
}

.services-header .label {
  color: var(--green-main);
  margin-top: 0;
}

.lei-seca-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

.lei-seca-hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 80px;
  align-items: stretch;
}

.cards-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-row-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

/* ============ SOBRE — layout helpers ============ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.about-cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-hammer-img {
  overflow: visible;
  margin-left: -40px;
}

.about-hammer-img img {
  width: 150%;
  height: auto;
  display: block;
}

.about-location-card {
  background: linear-gradient(157deg, var(--gray-1200) 0%, var(--gray-1000) 100%);
  border: 1px solid var(--gray-1000);
  border-radius: 32px;
  padding: 28px 32px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.about-location-card .about-location-icon {
  width: 96px;
  flex-shrink: 0;
  opacity: 0.6;
}

.card {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  border-radius: 32px;
  border: 1px solid var(--gray-1000);
  background: linear-gradient(137deg, var(--gray-1200) 0%, var(--gray-1000) 100%);
  padding: 32px;
  overflow: hidden;
  margin-bottom: 32px;
}

.card-highlight {
  border-width: 1px;
}

.errors-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.errors-row {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}

.errors-card {
  width: 384px;
  height: 248px;
  flex: none;
  padding: 32px;
  box-sizing: border-box;
}

.card-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  background: var(--black-main);
  border: 1px solid var(--gray-1200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-box img {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.card p {
  font-family: var(--font-secondary);
  color: var(--neutral-400);
  margin-top: 40px;
  font-size: 16px;
  font-weight: 400;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 40px;
  font-weight: 450;
  transition: gap .2s;
}

.card-link:hover {
  gap: 8px;
}

.card-link img {
  width: 16px;
}

.cards-row-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
  align-items: stretch;
}

.cards-row-sm .card p {
  margin-top: 40px;
}

/* ============ TECH / PLATFORM ============ */
.tech {
  padding: 80px 0 0;
}

.tech-header {
  max-width: 588px;
  margin: 0 auto;
  text-align: center;
}

.tech-header h2 {
  font-size: clamp(36px, 4vw, 48px);
  margin-top: 24px;
}

.tech-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 32px;
  padding-bottom: 0;
}

.tech-col {
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.tech-feature {
  max-width: 282px;
}

.tech-feature-right {
  text-align: right;
  margin-left: auto;
}

.tech-feature-right .feat-icon {
  margin-left: auto;
}

.feat-icon {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  border: 1px solid var(--white);
  background: var(--neutral-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-icon img {
  width: 24px;
}

.tech-feature h4 {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--neutral-50);
  margin-top: 12px;
}

.tech-feature p {
  color: var(--neutral-400);
  margin-top: 12px;
}

.tech-phone {
  max-width: 588px;
}

.tech-phone img {
  width: 100%;
  object-fit: contain;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 80px 0;
  background: var(--black-1200);
}

.testimonials-header {
  max-width: 792px;
  margin: 0 auto 56px;
  text-align: center;
}

.testimonials-header h2 {
  font-size: clamp(36px, 4vw, 48px);
  margin-top: 24px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 56px;
  padding: 20px 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 16px;
}

.carousel-arrow[data-carousel-prev] {
  left: 20px;
}

.carousel-arrow[data-carousel-next] {
  right: 20px;
}

.carousel-arrow img {
  width: 24px;
  filter: invert(1) opacity(0.3);
  transition: filter 0.2s;
}

.carousel-arrow:hover img {
  filter: invert(1) opacity(0.8);
}

.carousel-track-container {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 32px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 520px;
  width: 520px;
  box-sizing: border-box;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0.25;
  transform: scale(0.82);
  text-align: left;
}

.testimonial-card:not(.faded) {
  opacity: 1;
  transform: scale(1);
}

.testimonial-inner {
  background: #1A1A1A;
  border: 1px solid #262626;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 24px;
  box-sizing: border-box;
  height: 100%;
}

.testimonial-quote {
  width: 32px;
  height: auto;
  opacity: 0.5;
  flex-shrink: 0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-text {
  font-family: var(--font-secondary);
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 300;
}

.testimonial-name {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

.testimonial-city {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--gray-400);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #404040;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: var(--green-main);
  transform: scale(1.2);
}

@media (max-width: 800px) {
  .carousel-arrow[data-carousel-prev] {
    left: 10px;
  }
  .carousel-arrow[data-carousel-next] {
    right: 10px;
  }
  .testimonial-inner {
    padding: 32px 24px;
    gap: 20px;
  }
  .testimonial-text {
    font-size: 16px;
  }
}

/* ============ COMPARISON ============ */
.comparison {
  padding: 80px 0;
}

.comparison-header {
  max-width: 792px;
  margin: 0 auto;
  text-align: center;
}

.comparison-header h2 {
  font-size: clamp(36px, 4vw, 48px);
  margin-top: 24px;
}

.cmp-carousel-outer {
  overflow: hidden;
  margin-top: 56px;
  width: 100%;
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.cmp-dots {
  display: none;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.cmp-card {
  border-radius: 32px;
  padding: 32px;
}

.cmp-card.vdm {
  border: 2px solid var(--black-1200);
}

.cmp-card.padrao {
  border: 1px solid var(--black-1200);
}

.cmp-card h3 {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cmp-divider {
  height: 1px;
  background: var(--black-1200);
  margin: 24px 0;
}

.cmp-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cmp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--neutral-400);
}

.cmp-item img {
  width: 40px;
  flex-shrink: 0;
}

.comparison .btn-group {
  justify-content: center;
  margin-top: 56px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 80px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cta-text h2 {
  font-family: var(--font-primary);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.cta-text .cta-desc {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.17;
  color: var(--neutral-400);
  margin-top: 24px;
}

.cta-text .cta-desc .highlight {
  color: var(--neutral-50);
}

.cta-text .btn-group {
  margin-top: 56px;
}

.cta-image img {
  width: 100%;
  max-width: 598px;
  object-fit: contain;
}

/* ============ FAQ ============ */
.faq {
  padding: 80px 0;
}

.faq-header h2 {
  font-family: var(--font-primary);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-header p {
  color: var(--neutral-400);
  margin-top: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 80px;
}

.faq-col {
  display: flex;
  flex-direction: column;
}

.suporte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.suporte-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.suporte-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid var(--gray-1000);
  background: linear-gradient(137deg, var(--gray-1200) 0%, var(--gray-1000) 100%);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s;
}

.suporte-link:hover {
  border-color: var(--green-main);
}

.suporte-link img {
  width: 16px;
  height: 16px;
}

.faq-item {
  border-top: 1px solid var(--black-1200);
  border-bottom: 1px solid var(--black-1200);
  padding: 28px 4px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.17;
}

.faq-question:hover {
  color: var(--green-main);
}

.faq-question img {
  width: 24px;
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-question.open img {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-400);
}

.faq-answer.open {
  display: block;
}

/* ============ FOOTER ============ */
.footer {
  padding: 64px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  gap: 56px;
}

.footer-logo {
  width: 111px;
  height: auto;
  align-self: flex-start;
  object-fit: contain;
}

.footer-contact {
  max-width: 238px;
}

.footer-contact h3 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-contact p {
  font-size: 14px;
  color: var(--neutral-400);
  margin-top: 8px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-weight: 450;
}

.footer-contact-link img {
  width: 16px;
}

.footer-nav {
  display: flex;
  gap: 56px;
}

.footer-nav-col h4 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-nav-col a {
  display: block;
  margin-top: 16px;
  opacity: 0.45;
  font-weight: 450;
}

.footer-nav-col a:hover {
  opacity: 1;
  color: var(--green-main);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--black-1200);
  font-size: 14px;
  color: var(--neutral-400);
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-credit img {
  width: 16px;
  filter: invert(0.36) brightness(1.2);
  opacity: 1;
}

.gato-icon {
  opacity: 0.45;
}

/* ============ MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--gray-1000);
  border: 1px solid var(--gray-800);
  border-radius: 32px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--neutral-400);
  font-size: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-800);
  transition: all 0.2s;
}

.modal-close:hover {
  color: var(--white);
  border-color: var(--white);
}

.modal-box .label {
  margin-bottom: 8px;
}

.modal-box h2 {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.modal-box .modal-sub {
  font-family: var(--font-secondary);
  color: var(--neutral-400);
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 32px;
}

.modal-question {
  margin-bottom: 28px;
}

.modal-question label {
  display: block;
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--neutral-400);
  margin-bottom: 12px;
  font-weight: 600;
}

.radio-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--gray-800);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-secondary);
  font-size: 15px;
}

.radio-opt:hover,
.radio-opt:has(input:checked) {
  border-color: var(--green-main);
  background: rgba(152, 194, 36, 0.05);
}

.radio-opt input[type="radio"] {
  accent-color: var(--green-main);
  width: 18px;
  height: 18px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.modal-actions .btn-wrapper {
  width: 100%;
}

.modal-actions .btn {
  width: 100%;
}

.modal-consent {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: var(--neutral-400);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

.modal-consent a {
  color: var(--green-main);
  text-decoration: underline;
}

.modal-login {
  font-family: var(--font-secondary);
  font-size: 13px;
  color: var(--neutral-400);
  text-align: center;
  margin-top: 16px;
}

.modal-login a {
  color: var(--white);
  font-weight: 600;
}

.mobile-only-hero-img {
  display: none !important;
}

.desktop-only-hero-img {
  display: block;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .divider {
    display: none;
  }

  .container {
    padding: 0 24px;
  }

  .suporte-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .suporte-buttons {
    grid-template-columns: 1fr;
  }

  .errors-row {
    flex-direction: column;
    align-items: stretch;
  }

  .errors-card {
    width: 100%;
    height: auto;
    min-height: 180px;
  }

  .lei-seca-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .mobile-only-hero-img {
    display: block !important;
    margin: 24px auto !important;
    max-width: 315px;
    height: auto;
  }

  .desktop-only-hero-img {
    display: none !important;
  }

  .lei-seca-hero-grid .hero-sub,
  .lei-seca-hero-grid h1 {
    text-align: center;
  }

  .lei-seca-hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    text-align: center;
  }

  .como-funciona,
  .services,
  .tech,
  .testimonials,
  .comparison,
  .final-cta,
  .faq,
  .hero-legal,
  .navegacao-legal,
  .legal-content-section,
  .suporte,
  .about-section {
    padding: 32px 0 !important;
  }

  .header {
    padding: 24px;
  }

  .header-nav,
  .header-right {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 32px 0;
  }

  .hero .label {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 0.95;
  }

  .btn-group {
    flex-direction: column !important;
    width: 100%;
  }

  .btn-group .btn-wrapper {
    width: 100% !important;
  }

  .btn-group .btn {
    width: 100% !important;
  }

  .como-top {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .a-regra-e-clara-section .como-top {
    text-align: left !important;
  }

  .como-img {
    margin: 0 auto;
    max-width: 315px;
    height: 327px;
    border-radius: 16px;
  }

  .como-img::before,
  .como-img::after {
    display: none;
  }

  .steps-carousel {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
  }

  .cards-row,
  .cards-row-sm,
  .cards-row-3,
  .cards-row-4,
  .feature-grid-4 {
    grid-template-columns: 1fr;
  }

  .about-split,
  .about-cards-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-checklist {
    text-align: left;
  }

  .about-hammer-img {
    margin: 0 auto 24px;
    max-width: 280px;
  }

  .about-hammer-img img {
    width: 100%;
  }

  .about-location-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 32px 24px;
  }

  .about-location-card .about-location-icon {
    width: 140px;
    opacity: 0.7;
  }

  .about-location-label {
    display: none;
  }

  .about-location-title {
    font-size: 40px !important;
  }

  .about-location-card-sp .about-location-title {
    color: var(--green-main) !important;
  }

  .about-location-card-rs .about-location-title {
    color: var(--yellow) !important;
  }

  .about-location-cta {
    margin-top: 12px !important;
    align-self: center;
  }

  .about-location-card-sp .about-location-cta {
    color: var(--green-main) !important;
  }

  .about-location-card-rs .about-location-cta {
    color: var(--yellow) !important;
  }

  .card h3 {
    text-align: center;
  }

  .card p {
    text-align: center;
  }

  .card-link {
    justify-content: center;
    width: 100%;
  }

  .tech-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tech-col {
    gap: 32px;
  }

  .tech-col:first-child {
    order: 1;
  }

  .tech-col:last-child {
    order: 2;
  }

  .tech-phone {
    order: 3;
  }

  .tech-cta {
    display: none;
  }

  .tech-feature,
  .tech-feature-right {
    text-align: center;
    margin: 0 auto;
  }

  .tech-feature-right .feat-icon {
    margin: 0 auto;
  }

  .feat-icon {
    margin: 0 auto;
  }

  .comparison-cards {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
  }

  .cmp-card {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
  }

  .cmp-dots {
    display: flex;
  }

  .comparison .btn-group {
    flex-direction: column;
  }

  .comparison .btn-group .btn-wrapper {
    width: 100%;
  }

  .comparison .btn-group .btn {
    width: 100%;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text .btn-group {
    justify-content: center;
    flex-direction: column;
  }

  .cta-text .btn-group .btn-wrapper {
    width: 100%;
  }

  .cta-text .btn-group .btn {
    width: 100%;
  }

  .cta-image {
    order: -1;
  }

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

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }

  .footer-nav-col {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .modal-box {
    padding: 28px 20px;
  }

  .carousel-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .carousel-track-container {
    overflow: hidden;
    max-width: 100%;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-dots {
    display: flex;
  }

  .carousel-track-container {
    max-width: 100%;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: 320px;
  }

  .carousel-track {
    gap: 0;
  }

  .testimonial-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
}