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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  background: #fff;
}

@media (max-width: 768px) {
  body {
    background: #fff;
  }
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Estilos da barra de rolagem */

/* Seleção de texto em amarelo */
::selection { background: #FFB800; color: #000; }
::-moz-selection { background: #FFB800; color: #000; }

:root {
  scrollbar-color: #FFB800 #000;
  scrollbar-width: thin;
  --header-height: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

html::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

html::-webkit-scrollbar-track {
  background: #000;
}

html::-webkit-scrollbar-thumb {
  background-color: #FFB800;
  border-radius: 8px;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #e6a600;
}

/* Overlay escuro e painel lateral da busca */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 3000;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.search-dropdown {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 100vw);
  background: #FFFFFF;
  padding: 32px 24px 24px;
  z-index: 3100;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,0.4);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.search-dropdown.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Modal de sucesso e erro do formulário */
.success-overlay,
.error-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 3200;
}

.success-overlay.open,
.error-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.success-modal,
.error-modal {
  position: relative;
  max-width: 420px;
  width: calc(100% - 40px);
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px 32px 28px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  color: #1E2432;
}

.success-close,
.error-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.success-close span,
.error-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

.success-close span:first-child,
.error-close span:first-child {
  transform: rotate(45deg);
}

.success-close span:last-child,
.error-close span:last-child {
  transform: rotate(-45deg);
}

.success-icon,
.error-icon {
  margin-bottom: 20px;
}

.success-icon-circle,
.error-icon-circle {
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.success-icon-circle img,
.error-icon-circle img {
  width: 40px;
  height: 40px;
  display: block;
}

.success-modal h2,
.error-modal h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111827;
}

.success-modal p,
.error-modal p {
  font-size: 14px;
  line-height: 1.6;
  color: #4B5563;
}

/* Especifico do ícone de erro (triângulo vermelho) */
.error-icon-circle svg {
  width: 40px;
  height: 40px;
  display: block;
}

.search-title {
  font-size: 20px;
  font-weight: 800;
  color: #0B1535;
  line-height: 1.15;
  margin: 6px 0 14px;
  padding-right: 60px;
  width: 240p;
}

.search-results {
  padding: 16px 4px 16px 0;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
  scrollbar-color: #000 #E5E5E5; /* Firefox */
  scrollbar-width: thin;
}

.search-results::after {
  content: "";
  display: block;
  height: 16px; /* respiro no final da lista */
}

.result-group { margin: 20px 0 8px; }
.result-group h4 {
  color: rgba(0,0,0,0.9);
  font-size: 18px;
  font-weight: 800;
}

.result-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}

.result-loading-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #FFB800;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

.result-loading-text {
  font-size: 14px;
  color: #1a1a1a;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.result-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 12px 12px 0;
  cursor: pointer;
  align-items: center;
}
.result-item:last-child { border-bottom: none; }
.result-icon {
  display: grid; place-items: center; color: #FFB800;
}
.result-icon img { width: 24px; height: 24px; display: block; }
.result-title { color: #1a1a1a; font-weight: 700; font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.result-address { color: #666; font-size: 14px; line-height: 1.4; }

/* Ícone de seleção à direita (oculto por padrão) */
.result-right { display: flex; align-items: center; justify-content: center; }
.result-check {
  display: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #FFB800;
  color: #FFB800;
  background: #fff;
}
.result-check svg { width: 14px; height: 14px; }

/* Estilo do card selecionado */
.result-item.selected {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  margin-right: 0;
  border-bottom: none;
  border: 1px solid #E5E5E5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.result-item.selected .result-title { color: #1a1a1a; }
.result-item.selected .result-address { color: #666; display: none; }
.result-item.selected .result-check {
  display: grid;
  place-items: center;
  animation: result-check-pop 0.22s ease-out;
}

@keyframes result-check-pop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.result-title mark.hl {
  background: transparent;
  color: #FFB800;
}

/* Estilo do resultado que corresponde à busca */
.result-item.matched {
  background: transparent;
  border-radius: 0;
  padding: 12px 0;
  margin-right: 0;
}
.result-item.matched .result-title { color: #FFB800; }
.result-item.matched .result-address { color: #FFB800; }
.result-item.matched .result-title mark.hl { color: #FFB800; background: transparent; }

/* Barra de rolagem da lista de resultados */
.search-results::-webkit-scrollbar { width: 12px; }
.search-results::-webkit-scrollbar-track { background: #E5E5E5; }
.search-results::-webkit-scrollbar-thumb { background: #000000; border-radius: 6px; }

/* Botão de fechar do painel de busca */
.search-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.search-close img { display: block; width: auto; height: auto; }

/* Cabeçalho */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 2000;
  height: var(--header-height);
  padding: 0 40px;
  border-bottom: 1px solid #eee;
  transition: transform 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 154px;
  height: 55px;
  aspect-ratio: 14/5;
}

/* Logo interno do drawer mobile: oculto no desktop */
.nav-mobile-logo {
  display: none;
}

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

.nav-links a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
}

/* CTA in drawer: hidden on desktop */
.nav-cta { display: none; }

.nav-links a:hover {
  opacity: 0.8;
}

/* Oculta o botão de fechar do menu no desktop */
.menu-close { display: none; }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-buscar {
  background: #FFB800;
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-buscar:hover {
  background: #e6a600;
}

.menu-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-hamburger span {
  width: 20px;
  height: 2px;
  background: #000;
}

@media (min-width: 1024px) {
  .nav-links { margin-left: auto; }
  .header-right { margin-left: 32px; }
}

/* Seção hero */
.hero {
  background: url('https://landing-pages-smart.s3.us-east-1.amazonaws.com/pre-vendas-2026/assets/hero-bg.png') top/cover no-repeat;
  min-height: 560px;
  position: relative;
  padding-top: 150px;
  background-position: center top;
}

/* Gradient escuro começando a partir do subtítulo */
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 15%; /* Começa a partir do subtítulo no desktop */
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 20px;
  background: transparent;
  margin-top: -15px;
  position: relative;
  z-index: 2;
}

.hero-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  padding: 6px 0;
}

.hero-nav a:hover,
.hero-nav a.active {
  color: #fff;
  border-bottom-color: #FFB800;
}

.hero-content {
  text-align: center;
  padding: 40px 20px 56px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 20px;
}

.hero-title span {
  color: #FFB800;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
  max-width: 820px;
  margin: 0 auto;
}

/* Fade no rodapé do hero para integrar com o cartão */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(226, 4, 4, 0) 0%, rgba(255,255,255,0.72) 70%, #FFFFFF 100%);
}

/* Cartão principal do formulário */
.form-section {
  max-width: 1100px;
  margin: -60px auto 0;
  padding: 0 20px;
  position: relative;
  top: -40px;
  z-index: 10;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .form-grid {
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
  width: 100%;
  color: #1a1a1a;
}

/* Estilos de erro dos campos */
.form-group.has-error input {
  border-color: #C0002D;
  box-shadow: 0 0 0 1px rgba(192, 0, 45, 0.35);
}

.field-error {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: #C0002D;
  font-weight: 500;
}

/* Ajuste específico para erro dos checkboxes: alinhar sob o texto */
.checkbox-group + .field-error {
  margin-left: 28px; /* largura aproximada do checkbox + gap */
  margin-top: 0;
  margin-bottom: 10px;
}

.checkbox-group.has-error label {
  font-weight: 700;
}

/* Campo de busca com ícone */
.search-field {
  position: relative;
}

.search-field .input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(15%);
  width: 24px;
  height: 24px;
  color: #999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-field .input-icon svg {
  width: 100%;
  height: 100%;
}

.search-field .input-icon .icon-check {
  width: 24px;
  height: 24px;
}

.search-field input {
  padding-right: 40px;
}



.search-field input:focus+.input-icon {
  color: #FFB800;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #FFB800;
}

.form-group input::placeholder {
  color: #999;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  accent-color: #FFB800;
  cursor: pointer;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}

.checkbox-group label {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.55;
  cursor: pointer;
}

.checkbox-group label a {
  color: #0066CC;
  text-decoration: none;
}

.btn-submit {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 24px auto 0;
  background: #FFB800;
  color: #000;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #e6a600;
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 20px;
  line-height: 1.5;
}

/* Título de seção */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.dropdown-searchbar {
  position: relative;
  margin: 24px 0 12px;
}
.dropdown-searchbar input {
  width: 100%;
  background: #FFFFFF;
  border: 2px solid #FFB800;
  border-radius: 4px;
  padding: 14px 56px 14px 16px;
  font-size: 16px;
  line-height: 1.2;
  outline: none;
}
.dropdown-searchbar input::-webkit-search-cancel-button,
.dropdown-searchbar input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.dropdown-searchbar input::placeholder { color: #9A9A9A; }
.dropdown-searchbar .dropdown-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border: 2px solid #1E2432;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.dropdown-searchbar .dropdown-clear img { display: block; width: 14px; height: 14px; }
.dropdown-searchbar .dropdown-clear.has-selection {
  border-color: transparent;
  background: transparent;
}
.dropdown-searchbar .dropdown-clear .icon-check {
  width: 24px;
  height: 24px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 1100px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* Seção de benefícios */
.features-section {
  padding: 80px 20px;
  background: #fff;
}

.features-section .section-title {
  font-size: 32px;
  line-height: 40px;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse>* {
  direction: ltr;
}

.feature-image {
  border-radius: 16px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-content h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.3;
}

.feature-content h3 span {
  color: #FFB800;
}

.feature-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.feature-note {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin: 32px 0;
}

.btn-secondary {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: #FFB612;
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: #e6a400;
}

/* Seção de planos */
.plans-section {
  padding: 50px 20px;
  background: #121212;
}

.plans-container {
  max-width: 900px;
  margin: 0 auto;
}

.plans-section .section-title {
  margin: 30px 0;
  font-size: 1.8rem;
  color: #f0f0f0;
  font-weight: 800;
}

.plans-subtitle {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #bdbdbd;
  margin: -10px 0 28px;
}

/* Container da comparação com sticky */
.planos-comparacao {
  position: relative;
}

.planos-sticky-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #121212;
  padding: 12px 0;
}

/* Header row dos planos */
.plan-header-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Cards do header (Smart, Fit, Black) */
.plan-header {
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
}

.plan-header span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 2px;
}

/* Estilo Smart e Fit (Cinza Claro) */
.header-light {
  background-color: #e6e6e6;
  color: #333;
}

/* Estilo Black (Preto com borda amarela) */
.header-black {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #FFB612;
}

/* Setinha amarela embaixo do plano Black */
.header-black::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FFB612;
}

/* Containers de feature */
.feature-container {
  margin-bottom: 25px;
}

.feature-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f0f0f0;
}

/* Row das status bars */
.status-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Precisa bater com o gap do header pra alinhar as colunas */
  gap: 16px;
}

/* Barras de status (Check/X) */
.status-bar {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
}

.status-bar img {
  width: 24px;
  height: 24px;
}

.bar-dark {
  background-color: #262626;
  color: #FFB612;
}

/*
  O header tem gap entre colunas, mas as barras precisam parecer contínuas.
  Então a barra escura "invade" o gap à direita e preenche visualmente.
*/
.status-row .status-bar.bar-dark:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: -16px;
  width: 16px;
  height: 100%;
  background-color: #262626;
}

.bar-yellow {
  background-color: #FFB612;
  color: #000;
  border-radius: 6px;
  margin-left: -3px;
}

.rounded-start {
  border-radius: 6px 0 0 6px;
}

.plans-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-plans-cta {
  display: inline-block;
  background: #FFB612;
  color: #000;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  transition: background 0.3s;
}

.btn-plans-cta:hover {
  background: #fccd5e;
}

.btn-cta {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
  background: #FFB800;
  color: #000;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: #e6a600;
}

/* Seção de dúvidas frequentes */
.faq-section {
  padding: 80px 20px;
  background: #fff;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-section .section-title {
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.faq-header:hover { background: transparent; }
.faq-header:active { background: transparent; }

.faq-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  padding-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: #666;
  transition: color 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

/* Ícone do FAQ em amarelo no hover/aberto */
.faq-header:hover .faq-icon svg,
.faq-header:focus-visible .faq-icon svg,
.faq-item.open .faq-icon svg { color: #FFB800; }

/* Foco amarelo no FAQ */
.faq-header:focus-visible { outline: 2px solid #FFB800; outline-offset: 2px; }

/* Título da pergunta em amarelo no hover/aberto */
.faq-header:hover h4,
.faq-header:focus-visible h4,
.faq-item.open .faq-header h4 { color: #FFB800; }

.faq-content {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 12px 20px 20px; /* padding para a resposta não ficar grudada */
  border-top: none; /* remove linha acima da resposta */
}

.faq-item.open .faq-content {
  display: block;
  max-height: 500px;
}

.faq-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* Rodapé */
.footer {
  background: #000;
  color: #fff;
  padding: 48px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  text-align: center;
  margin-bottom: 24px;
}

.footer-logo svg {
  height: 28px;
}

.footer-social-label {
  text-align: center;
  font-size: 20px;
  color: #f9f9f9;
  font-weight: 700;
  margin-bottom: 18px;
  padding-top: 34px;
  border-top: 1px solid #FFFFFF;
  margin-bottom: 34px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  align-items: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: #FFB800;
  border-color: #FFB800;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  color: #000;
}

.footer-social a:hover svg {
  color: #000;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  padding-top: 28px;
  border-top: 1px solid #FFFFFF;
  justify-items: center;
  align-items: flex-start;
}



.footer-column h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 34px;
  margin-top: 34px;
  color: #fff;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
  line-height: 1.6;
}

.footer-column a:hover {
  color: #FFB800;
}

.footer-accessibility {
  text-align: center;
  margin-bottom: 28px;
  padding-top: 28px;
  border-top: 1px solid #FFFFFF;
}

.footer-accessibility p {
  font-size: 20px;
  color: #f9f9f9;
  font-weight: 700;
  margin-bottom: 34px;
  margin-top: 34px;
}

.accessibility-icons {
  display: flex;
  justify-content: center;
  gap: 0;
}

.accessibility-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  margin-right: 5px;
}
.accessibility-icons a:last-child { margin-right: 0; }

.accessibility-icons a img {
  width: 42px;
  height: 42px;
  display: block;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid #FFFFFF;
}

.footer-bottom h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 34px;
  margin-top: 34px;
}

.footer-bottom p {
  font-size: 14px;
  color: #f9f9f9;
  margin-bottom: 34px;
  line-height: 1.6;
}

/* Regras responsivas */
@media (max-width: 1160px) {
  .hero-title br { display: none; }
}
@media (max-width: 980px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 880px) {
  .logo img { width: clamp(112px, 14vw, 136px); height: auto; }
}
/* Spacing for search button and alignment before mobile drawer */
@media (max-width: 867px) {
  .header-container { justify-content: space-between; }
  .header-right { margin-left: auto; }
  .btn-buscar { margin-left: 12px; }
}
@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    text-align: left;
  }

  .footer-column h5,
  .footer-column a {
    text-align: left;
  }

  html { scroll-padding-top: 64px; }
  .header { height: 64px; padding: 0 16px; }
  .header-container { padding: 0 12px; justify-content: space-between; }
  .logo img { width: 112px; height: auto; }
  .hero {
    padding-top: 40px;
    min-height: auto;
    padding-bottom: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.35) 100%),
      url('https://landing-pages-smart.s3.us-east-1.amazonaws.com/pre-vendas-2026/assets/hero-mobile.png') center 85% / cover no-repeat;
    top: 0;
    margin-bottom: 0;
    }
  .hero::before { display: none; }
  .hero::after {
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.6) 40%, #fff 100%);
  }
  .hero-nav { margin-top: 24px; gap: 48px; }
  .hero-nav a { font-size: 15px; font-weight: 500; }
  .hero-content { margin-top: 0; padding: 24px 20px 0; }

  .btn-buscar { display: none; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 320px;
    background: #FFFFFF;
    padding: 64px 24px 24px;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    display: flex;
    z-index: 2100;
    box-shadow: -12px 0 24px rgba(0,0,0,0.16);
    overflow-y: auto;
    scrollbar-color: #FFB800 #F3F3F3;
    scrollbar-width: thin;
    visibility: hidden;
  }

  .nav-links a { color: #000; font-size: 16px; }

  .nav-mobile-logo {
    margin-bottom: 8px;
  }
  .nav-mobile-logo img {
    width: 140px;
    height: auto;
    display: block;
  }
  .nav-links .nav-cta {
    display: block;
    margin-top: 4px;
    order: 99; /* mantém o CTA sempre por último no drawer */
    width: 100%;
    background: #FFB800;
    color: #000;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
  }
  .nav-links .nav-cta:hover { background: #e6a600; }

  .nav-links.active { transform: translateX(0); visibility: visible; }

  .menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    color: #111827;
    cursor: pointer;
  }
  .menu-close:hover { background: transparent; }
  .menu-close svg { width: 26px; height: 26px; }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1500;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links::-webkit-scrollbar {
    width: 12px;
  }
  .nav-links::-webkit-scrollbar-track {
    background: #111;
  }
  .nav-links::-webkit-scrollbar-thumb {
    background-color: #FFB800;
    border-radius: 8px;
    border: 2px solid #111;
  }

  .menu-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 800;
  }
  .hero-title br { display: none; }
  .hero-subtitle { font-size: 16px; max-width: 360px; margin: 20px auto 0; opacity: 0.95; line-height: 1.5; }

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

  .form-section { 
    margin: -380px auto 0; 
    top: 0; 
    padding: 0 20px 48px; 
    background: transparent;
    position: relative; 
    z-index: 10; 
  }
  .form-card { 
    padding: 32px 24px 28px; 
    border-radius: 24px; 
    box-shadow: 0 4px 16px 2px rgba(160, 160, 167, 0.24); 
    background: #fff;
    position: relative;
  }
  /* Degradê começa a partir do campo Buscar academia */
  .form-card::after {
    content: '';
    position: absolute;
    left: -20px;
    right: -20px;
    top: 340px;
    bottom: -48px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.7) 30%, #fff 60%);
    z-index: -1;
    pointer-events: none;
  }

  .search-field {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  /* Search dropdown responsivo em mobile: ocupa toda a largura e reduz paddings */
  .search-dropdown {
    width: 100vw;
    padding: 20px 16px 16px;
  }

  .search-title {
    font-size: 18px;
    margin: 4px 0 10px;
  }

  .dropdown-searchbar input {
    font-size: 13px;
    padding: 12px 52px 12px 14px;
  }

  .search-results {
    max-height: calc(100vh - 110px);
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .features-section { padding: 24px 20px 56px; }
  .feature-content h3 { font-size: 20px; line-height: 1.3; }
  .feature-content p { font-size: 14px; line-height: 1.6; }

  /* Planos responsivo mobile */
  .planos-sticky-header {
    top: 0; /* header comentado */
  }

  .plan-header-row {
    gap: 12px;
  }

  .status-row {
    gap: 12px;
  }

  .status-row .status-bar.bar-dark:not(:last-child)::after {
    right: -12px;
    width: 12px;
  }

  .plan-header {
    font-size: 0.85rem;
    padding: 8px 5px;
  }

  .plan-header span {
    font-size: 0.65rem;
  }

  .feature-title {
    font-size: 0.75rem;
  }

  .status-bar {
    height: 38px;
  }

  .status-bar img {
    width: 20px;
    height: 20px;
  }

  .plans-section .section-title {
    font-size: 1.4rem;
  }

  .plans-subtitle {
    font-size: 0.9rem;
  }

  .btn-plans-cta {
    display: block;
    width: 100%;
    font-size: 15px;
    padding: 12px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }

  .footer { padding: 24px 16px; }
  .footer-logo { margin-bottom: 16px; }
  .footer-social-label { text-align: left; padding-top: 24; margin-top: 32px; margin-bottom: 20px; }
  .footer-social { gap: 12px; justify-content: flex-start; margin-top: 8px; margin-bottom: 24px; }
  .footer-social a { width: 36px; height: 36px; }
  .footer-social a svg { width: 18px; height: 18px; }
  .footer-links { gap: 16px; margin-bottom: 20px; padding-top: 0; }
  .footer-bottom h6 { font-size: 12px; }
  .footer-bottom { text-align: center; padding-top: 0; }
  .footer-bottom p { font-size: 11px; }
  .footer-accessibility { text-align: left; padding-top: 0; }
  .accessibility-icons { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .plan-header-row {
    gap: 10px;
  }

  .status-row {
    gap: 10px;
  }

  .status-row .status-bar.bar-dark:not(:last-child)::after {
    right: -10px;
    width: 10px;
  }
  .plan-header { font-size: 0.8rem; }
  .plan-header span { font-size: 0.6rem; }
  .hero-title { font-size: 48px; line-height: 1.08; letter-spacing: -0.02em; }
  .hero-subtitle { font-size: 16px; max-width: 340px; }

  .section-title {
    font-size: 22px;
  }

  .form-card {
    padding: 24px 16px;
  }

  .feature-title {
    font-size: 0.7rem;
  }

  .footer-social { gap: 10px; }
  .footer-social a { width: 32px; height: 32px; }
  .footer-social a svg { width: 16px; height: 16px; }
}