:root {
  --bg-body: #f5f5f7;
  --bg-card: #ffffff;
  --bg-navbar: rgba(255, 255, 255, 0.9);
  --border-soft: #e5e7eb;
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #c99e80;
  --accent-strong: #a15555;
  --accent-soft: rgba(201, 158, 128, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.18);
  --transition-fast: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--bg-navbar);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* HERO */

.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 40px;
  background-image: url("bd\ herosection.png"); /* Trocar pelo bg real */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}



.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  display: flex;
  justify-content: flex-start;
}

/* FORM CARD */

.form-card {
  width: 100%;
  max-width: 520px; /* card mais largo */
  background: rgba(255, 255, 255, 0.98);
  border-radius: 26px;
  padding: 26px 24px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.form-badge-area {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.badge-free,
.badge-presencial {
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
}

.badge-free {
  background: var(--accent-strong);
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
}

.badge-presencial {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: rgba(201, 158, 128, 0.35);
}

.form-title {
  margin: 2px 0 6px;
  font-size: 1.9rem;
  font-weight: 500;
}

.form-title span {
  display: block;
  margin-top: 2px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.form-subtitle {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* STEPS INDICATOR */

.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #f9fafb;
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), transform var(--transition-fast);
}

.step-dot.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}

.step-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(209, 213, 219, 0.8),
    rgba(229, 231, 235, 0.4)
  );
}

/* FORM STEPS */

.form-step {
  display: none;
  animation: fadeInStep 0.25s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 500;
}

/* FORM FIELDS */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;          /* mais espaço entre label e input */
  margin-bottom: 18px; /* mais espaço entre um campo e outro */
}


.form-group label {
  font-size: 0.8rem;
  color: var(--text-main);
}

.form-group label span {
  color: #ef4444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 18px 11px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
  color: var(--text-main);
  width: 100%;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
  font-size: 0.86rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(201, 158, 128, 0.16);
  transform: translateY(-0.5px);
}

/* Ícone calendário mais sutil */
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* NAVIGAÇÃO FORM */

.form-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.btn-primary {
  border-radius: 999px;
  padding: 9px 16px;
  border: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(161, 85, 85, 0.55);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    opacity var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(161, 85, 85, 0.6);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: default;
  box-shadow: none;
}

.btn-secondary {
  border-radius: 999px;
  padding: 9px 16px;
  border: none;
  font-size: 0.86rem;
  background: #f3f4f6;
  color: var(--text-main);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-secondary:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.small-note {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.small-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 4px;
}

/* RANGE */

.range-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#investimento2025 {
  width: 100%;
}

.range-value {
  font-size: 0.85rem;
  color: var(--accent-strong);
  font-weight: 500;
}

/* CHECKBOX GRID */

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: #f9fafb;
  cursor: pointer;
  transition: border-color var(--transition-fast),
    background var(--transition-fast), transform var(--transition-fast);
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--accent-strong);
}

.checkbox-item:hover {
  border-color: var(--accent);
  background: #ffffff;
  transform: translateY(-1px);
}

/* SEÇÕES GERAIS */

.section {
  padding: 48px 16px;
  background: #ffffff;
}

.section:nth-of-type(even) {
  background: #f9fafb;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 500;
}

.section-subtitle {
  margin: 0 0 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* BIO */

.bio-section {
  scroll-margin-top: 80px;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}

.bio-text p {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  margin: 0 0 10px;
}

.bio-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.bio-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}

.bio-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-strong);
}

.bio-address {
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--text-main);
}

.bio-photo-wrapper {
  display: flex;
  justify-content: center;
}

.bio-photo {
  width: 100%;
  max-width: 200px;
  object-fit: cover;
}

/* FAQ */

.faq-section {
  scroll-margin-top: 80px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: #ffffff;
  overflow: hidden;
}

.faq-header {
  width: 100%;
  padding: 11px 14px;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-main);
}

.faq-header span:first-child {
  text-align: left;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-strong);
  transition: transform var(--transition-fast);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  background: #f9fafb;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-body p {
  margin: 8px 0 12px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.faq-item.open .faq-body {
  max-height: 220px;
  padding: 4px 14px 12px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* FOOTER */

.footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 14px 16px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
}

/* UTILIDADES */

.hidden {
  display: none !important;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .hero {
    align-items: flex-start;
    padding-top: 24px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(17, 24, 39, 0.9) 0%,
      rgba(17, 24, 39, 0.75) 40%,
      rgba(17, 24, 39, 0.45) 70%,
      rgba(17, 24, 39, 0.25) 100%
    );
  }

  .hero-content {
    justify-content: center;
  }

  .form-card {
    max-width: 100%;
  }

  .bio-grid {
    grid-template-columns: 1fr;
  }

  .bio-photo-wrapper {
    order: -1;
  }

  .section {
    padding: 40px 16px;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .checkbox-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.form-navigation {
  display: flex;
  justify-content: center;
  gap: 12px;  /* mais espaço entre os botões */
  margin-top: 18px;
}
.form-badge-area {
  width: 100%;
  display: flex;
  flex-direction: column; /* uma em cima da outra */
  gap: 8px;
}

.badge-free,
.badge-presencial {
  width: 100%;             /* ocupa toda a largura */
  text-align: center;       /* centraliza o texto */
  display: block;
}
.hero-event-info {
  margin-top: 14px;
    margin-bottom: 28px;

  font-size: 0.9rem;
  line-height: 1.45;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  padding: 10px 14px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  display: inline-block;
}
.evento-info-section {
  background: #ffffff;
  padding: 48px 16px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.evento-info-inner {
  max-width: 900px;
  margin: 0 auto;
}

.evento-destaque {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent-strong);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.evento-detalhes {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #374151;
}

@media (max-width: 600px) {
  .evento-destaque {
    font-size: 1.9rem;
  }

  .evento-detalhes {
    font-size: 0.95rem;
  }
}
.form-card .hero-event-info {
  width: 100%;
  display: block;
  text-align: center;
  background: rgba(0, 0, 0, 0.06);
  padding: 12px 14px;
  border-radius: 12px;
  margin-top: 12px;
  line-height: 1.45;
}
.form-card .hero-event-info {
  width: 100%;
  display: block;
  text-align: center;
  background: rgba(0, 0, 0, 0.06);
  padding: 12px 14px;
  border-radius: 12px;
  margin-top: 12px;
  line-height: 1.45;
  color: #111111; /* <<< COR CORRETA DO TEXTO */
}
.whatsapp-button {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.whatsapp-button:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

@media (max-width: 600px) {
  .whatsapp-button {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-button img {
    width: 28px;
    height: 28px;
  }
}
/* ===== MARQUEE SUPERIOR ===== */
.top-marquee {
  width: 100%;
  background: #c00000; /* vermelho premium */
  color: #ffffff;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 14s linear infinite;
}

.marquee-content span {
  padding-right: 50px;
}

/* ANIMAÇÃO */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* micro-ajustes mobile */
@media (max-width: 600px) {
  .top-marquee {
    font-size: 0.75rem;
    padding: 5px 0;
  }
}
/* INSTAGRAM SECTION */
.instagram-section {
  background: #C99E80; /* tom quente elegante */
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.instagram-inner {
  max-width: 700px;
  margin: 0 auto;
}

.instagram-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.instagram-icon {
  width: 70px;
  height: 70px;
  opacity: 0.95;
}

.instagram-title {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.instagram-text {
  font-size: 1.05rem;
  margin-bottom: 26px;
  line-height: 1.6;
  font-weight: 300;
}

.instagram-button {
  display: inline-block;
  background: #fff;
  color: #C99E80;
  padding: 14px 34px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.instagram-button:hover {
  background: #f9f9f9;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 600px) {
  .instagram-title {
    font-size: 1.5rem;
  }

  .instagram-icon {
    width: 55px;
    height: 55px;
  }

  .instagram-button {
    width: 100%;
    max-width: 320px;
  }
}
/* Estilos para a seleção de horário */
.horario-wrapper {
  background-color: #fdf6f6; /* Fundo levemente rosado para destaque */
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eccaca;
  margin-bottom: 24px;
}

.horario-label-title {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: #b94a48;
}

.radio-options-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* O cartão clicável */
.radio-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-card:hover {
  border-color: #b94a48;
  background-color: #fffbfb;
}

/* A bolinha do input */
.radio-card input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  accent-color: #b94a48; /* Cor da bolinha quando marcada */
  cursor: pointer;
}

/* Texto ao lado da bolinha */
.radio-info {
  display: flex;
  flex-direction: column;
}

.radio-info .periodo {
  font-weight: 700;
  font-size: 1rem;
  color: #333;
}

.radio-info .horas {
  font-size: 0.9rem;
  color: #666;
}

/* Layout lado a lado em telas maiores */
@media (min-width: 600px) {
  .radio-options-container {
    flex-direction: row;
  }
  .radio-card {
    flex: 1;
  }
}
.form-row {
  display: flex;
  gap: 12px; /* Espaço entre os campos */
}

.form-row .form-group {
  flex: 1; /* Força os dois a dividirem o espaço igualmente */
  min-width: 0; /* Evita quebra de layout em telas muito pequenas */
}
/* Container dos botões */
.form-navigation {
  display: flex;
  gap: 15px; /* Espaço entre os botões quando houver dois */
  margin-top: 24px;
}

/* Regra para os botões dentro da navegação */
.form-navigation button {
  flex: 1; /* Faz o botão ocupar todo o espaço disponível */
  width: 100%; /* Garante largura total */
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
/* Atualize ou adicione estas classes no seu CSS */

.radio-options-container {
  display: grid;
  /* O segredo: cria colunas automáticas com largura mínima de 250px */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem; /* Espaço entre os cards */
  width: 100%;
}

.radio-card {
  display: flex;
  align-items: center; /* Centraliza o conteúdo verticalmente */
  /* Remove larguras fixas antigas se houver */
  width: auto; 
  max-width: 100%;
  box-sizing: border-box;
  /* Mantém o estilo visual do card (bordas, padding, etc que você já tenha) */
}