/* Reset simples */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #f7f7f7;
  color: #1f3b4d;
  line-height: 1.6;
}

/* Cores principais */
:root {
  --laranja: #ff8438;
  --azul: #1f3b4d;
  --cinza-claro: #f7f7f7;
  --branco: #ffffff;
  --cinza-texto: #4b5563;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e3e5e8;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-content.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}

.region-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--azul);
  margin-top: 1rem;
  text-align: center;
}

/* LOGO */
.logo-img {
  height: 80px; /* altura no desktop */
  width: auto;
  display: block;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav .btn {
  font-size: 0.9rem;
  padding: 0.45rem 1.2rem;
}

/* AJUSTE DA SEÇÃO FORM */
.section-form {
  padding: 1.5rem 1rem 1.5rem;
}

.section-form h2 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  margin-bottom: 1rem;
}

.form-wrapper {
  padding: 1.3rem;
}

.hero {
  padding: 2rem 0 1.2rem;
}

.hero-content {
  gap: 1rem;
}

.form-note {
  margin-bottom: 0.8rem;
  max-width: 720px;
  margin: 0.8rem auto 1.2rem;
  font-size: 0.85rem;
  text-align: center;
  color: #6b7280;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.btn-primary {
  background-color: var(--laranja);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 132, 56, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 132, 56, 0.6);
}

.btn-outline {
  border: 1px solid var(--laranja);
  color: var(--laranja);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--laranja);
  color: #ffffff;
}

/* Hero */
.hero {
  padding: 3rem 0 1.5rem;
  background: radial-gradient(circle at top left, #ffe8d6 0, #f0f7fa 60%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--azul);
}

.hero-text p {
  margin-bottom: 1rem;
  color: #374151;
}

.hero-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.hero-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.hero-list li::before {
  content: "•";
  color: var(--laranja);
  position: absolute;
  left: 0;
  top: 0;
}

/* Hero card */
.hero-card {
  background-color: var(--branco);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(31, 59, 77, 0.15);
  margin-bottom: 0;
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--azul);
}

.hero-card ol {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.hero-card li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.hero-small {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Seções */
.section {
  padding: 1rem 0;
}

.section h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--azul);
}

.section p {
  color: #4b5563;
}

.section-services .section-subtitle:last-of-type {
  margin-top: 2rem;
  margin-bottom: 0;
}

/* Seção "Por que" */
.section-why p {
  max-width: 720px;
  margin: 0 auto 1rem;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 2rem;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background-color: var(--branco);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 6px 20px rgba(31, 59, 77, 0.08);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--azul);
}

.card p {
  font-size: 0.9rem;
}

/* Seção formulário */
.section-form {
  background-color: #f9fafb;
  padding: 3rem 0 3rem;
}

.section-form h2 {
  margin-bottom: 0.3rem;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #6b7280;
}

/* Wrapper do formulário / iframe */
.form-wrapper {
  width: 100%;
  max-width: 700px;
  border: none;
  margin: 0 auto;
  display: block;
  background-color: var(--branco);
  border-radius: 0.8rem;
  padding: 0.5rem;
  box-shadow: 0 8px 24px rgba(31, 59, 77, 0.08);
}
.form-wrapper iframe {
  width: 100%;
  border: none;
  border-radius: 0.8rem;
}

.form-note {
  max-width: 720px;
  margin: 1rem auto 1.5rem;
  font-size: 0.85rem;
  text-align: center;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Rodapé */
.footer {
  padding: 1.5rem 0;
  background-color: var(--azul);
  color: #e5e7eb;
  margin-top: 2rem;
}

.footer-content {
  text-align: center;
}

.footer-small {
  font-size: 0.8rem;
  color: #9ca3af;
}

.contact {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .form-wrapper iframe {
    height: 3500px;
  }

  .hero {
    padding-top: 2rem;
  }

  .nav .btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
  }

  .header-content.centered {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 0.5rem;
    font-size: 0.4rem;
  }
  .logo-img {
    height: 60px; /* menor no celular */
  }

  .nav {
    width: 100%;
  }
}
