:root {
  --navy: #061b46;
  --navy-2: #09265f;
  --green: #25a83a;
  --green-dark: #158329;
  --text: #06112f;
  --muted: #5d6578;
  --line: #e5e9f2;
  --bg-soft: #f4fbf5;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 27, 70, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-info {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}

.top-info-content {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-info-content .desktop-only {
  margin-left: auto;
}

.header {
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.05);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 210px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
}

nav a:hover { color: var(--green); }

.nav-whatsapp {
  background: var(--green);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(37,168,58,.25);
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(6,27,70,.98) 0%, rgba(6,27,70,.9) 40%, rgba(6,27,70,.62) 70%, rgba(6,27,70,.88) 100%),
    url("https://images.unsplash.com/photo-1483729558449-99ef09a8c325?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-content {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
  padding: 62px 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(35px, 5vw, 58px);
  line-height: 1.08;
  margin: 0 0 18px;
}

.hero p {
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 34px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-green {
  background: linear-gradient(135deg, #38c94e, var(--green));
  box-shadow: 0 12px 25px rgba(37,168,58,.3);
}

.btn-outline {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.8);
}

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

.countries span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 100px;
  background: rgba(255,255,255,.12);
  font-size: 17px;
}

.countries strong {
  margin-left: 8px;
  font-size: 15px;
}

.hero-card {
  max-width: 430px;
  margin-left: auto;
  padding: 30px;
  border-radius: 16px;
  background: rgba(6,27,70,.72);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}

.hero-feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-feature:last-child { margin-bottom: 0; }

.hero-feature span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #84ff90;
  border-radius: 10px;
  font-size: 24px;
}

.hero-feature strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
}

.hero-feature p {
  font-size: 14px;
  color: rgba(255,255,255,.88);
}

.service-strip {
  background: #fff;
  padding: 34px 0 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  transform: translateY(-6px);
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 14px;
  min-height: 150px;
  text-align: center;
  box-shadow: var(--shadow);
}

.service-card .icon {
  font-size: 34px;
  color: var(--green);
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 17px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.about {
  padding: 76px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

.mini-title {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

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

h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  margin: 12px 0 20px;
}

.about p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.about-box {
  background: var(--bg-soft);
  border: 1px solid #d9efd9;
  border-radius: 18px;
  padding: 30px;
}

.about-box strong {
  display: block;
  font-size: 22px;
  margin-bottom: 14px;
}

.about-box li {
  margin-bottom: 12px;
  color: var(--muted);
}

.process {
  padding: 76px 0;
  background: #f8fafc;
}

.process h2 {
  text-align: center;
  margin-bottom: 34px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.process-card span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}

.process-card p {
  color: var(--muted);
}

.quiz-section {
  padding: 78px 0;
  background:
    radial-gradient(circle at left top, rgba(37,168,58,.11), transparent 32%),
    linear-gradient(90deg, #f6fff6, #ffffff);
}

.quiz-grid {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 55px;
  align-items: center;
}

.quiz-intro h2 {
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.2;
}

.quiz-intro h2 span {
  color: var(--green);
}

.quiz-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.benefits div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(6,27,70,.06);
}

.benefits strong, .benefits small {
  display: block;
}

.benefits small {
  color: var(--muted);
  margin-top: 5px;
}

.quiz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.quiz-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.progress-bar {
  height: 9px;
  background: #e5e8ed;
  border-radius: 100px;
  overflow: hidden;
}

#progressFill {
  height: 100%;
  width: 8%;
  background: var(--green);
  border-radius: 100px;
  transition: .25s;
}

.question-title {
  margin: 0 0 8px;
  font-size: 25px;
}

.question-subtitle {
  margin: 0 0 22px;
  color: var(--muted);
}

.form-step { display: none; }
.form-step.active { display: block; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.choice-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.choice-list {
  display: grid;
  gap: 12px;
}

.choice {
  border: 1px solid #dfe4ed;
  background: #fff;
  color: var(--text);
  border-radius: 8px;
  min-height: 52px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: .18s;
}

.choice:hover {
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(37,168,58,.12);
  transform: translateY(-1px);
}

.choice.selected {
  background: #eaffed;
  border-color: var(--green);
  color: var(--green-dark);
}

.choice.wide {
  grid-column: 1 / -1;
}

.fields {
  display: grid;
  gap: 12px;
}

.fields input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dfe4ed;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 15px;
}

.quiz-actions {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.btn-next, .btn-light {
  border: 0;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.btn-next {
  background: linear-gradient(135deg, #38c94e, var(--green));
  color: #fff;
  margin-left: auto;
}

.btn-light {
  background: #eef2f7;
  color: var(--text);
}

.hidden { display: none !important; }

.result {
  background: #f6fff7;
  border: 1px solid #cceecd;
  border-radius: 14px;
  padding: 24px;
}

.result h3 {
  font-size: 26px;
  margin: 0 0 10px;
}

.result p {
  color: var(--muted);
  line-height: 1.6;
}

.result .tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  margin-bottom: 12px;
}

.result a {
  display: inline-flex;
  text-decoration: none;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  padding: 14px 22px;
  border-radius: 8px;
}

.float-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #20c75a;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 32px;
  box-shadow: 0 15px 28px rgba(0,0,0,.22);
  z-index: 30;
}

footer {
  background: var(--navy);
  color: #fff;
  padding: 40px 0;
}

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

footer img {
  width: 190px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.1);
}

footer p {
  color: rgba(255,255,255,.75);
}

@media (max-width: 1050px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-content, .quiz-grid, .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-left: 0;
    max-width: 100%;
  }

  nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-top: 1px solid var(--line);
  }

  nav.open { display: flex; }
  .menu-btn { display: block; }
}

@media (max-width: 700px) {
  .desktop-only { display: none; }
  .top-info-content { flex-direction: column; gap: 4px; padding: 8px 0; }
  .brand img { width: 170px; }
  .hero-content { padding: 45px 0; }
  .service-grid, .process-grid, .benefits, .choice-grid, .choice-grid.two, .footer-grid {
    grid-template-columns: 1fr;
  }
  .quiz-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn { width: 100%; }
  .countries { flex-wrap: wrap; }
}

/* Correção das bandeiras em imagem */
.countries img{
  width:28px;
  height:20px;
  object-fit:cover;
  border-radius:3px;
  margin-right:4px;
}

.choice img{
  width:24px;
  height:18px;
  object-fit:cover;
  border-radius:3px;
  margin-right:8px;
  vertical-align:middle;
}

.choice{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
