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

:root {
  --azul-escuro: #005b9f;
  --azul-principal: #0d84c8;
  --azul-claro: #e8f5fc;
  --vermelho: #ed0029;
  --vermelho-hover: #cf0024;
  --branco: #ffffff;
  --texto: #075b93;
  --texto-suave: #667085;
  --borda: #d9e2ea;
  --fundo: #f7fafc;
  --sombra: 0 18px 45px rgba(0, 87, 150, 0.14);
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--texto);
  background:
    radial-gradient(circle at top left, rgba(13, 132, 200, 0.10), transparent 34%),
    var(--fundo);
}

.hero {
  position: relative;
  min-height: 480px;
  padding: 38px 20px 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(55, 170, 225, 0.32), transparent 32%),
    linear-gradient(145deg, #005f9f 0%, #087fbd 58%, #1ba3d8 100%);
  border-bottom: 10px solid var(--vermelho);
  border-radius: 0 0 50% 8% / 0 0 10% 3%;
}

.hero::after {
  content: "✚";
  position: absolute;
  top: 25px;
  right: 7%;
  font-size: 270px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.045);
  transform: rotate(-8deg);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.06);
}

.hero-shape-one {
  width: 650px;
  height: 650px;
  top: -430px;
  left: -190px;
}

.hero-shape-two {
  width: 430px;
  height: 430px;
  right: -230px;
  bottom: -280px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(930px, 100%);
  margin: 0 auto;
  text-align: center;
}

.logo {
  width: min(470px, 90vw);
  max-height: 190px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto 10px;
  color: var(--branco);
  font-size: clamp(27px, 4vw, 43px);
  line-height: 1.18;
  font-weight: 600;
}

.hero h1 strong {
  display: block;
  color: var(--branco);
  font-weight: 800;
}

.hero-subtitle {
  max-width: 690px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.6;
}

.beneficios {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: var(--branco);
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.beneficio-icone {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--branco);
  font-size: 24px;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
}

.beneficio span,
.beneficio strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.beneficio strong { font-weight: 700; }

.divisor {
  width: 1px;
  height: 45px;
  background: rgba(255,255,255,0.35);
}

.pagina {
  width: min(1080px, calc(100% - 32px));
  margin: -58px auto 35px;
  position: relative;
  z-index: 3;
}

.form-card {
  padding: 34px 44px 30px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 28px;
  box-shadow: var(--sombra);
}

.form-cabecalho {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icone-destaque {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--branco);
  font-size: 33px;
  font-weight: 800;
  background: linear-gradient(145deg, var(--vermelho), #c70023);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(237, 0, 41, 0.22);
}

.form-cabecalho h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.form-cabecalho p {
  margin-top: 8px;
  color: var(--texto-suave);
  font-size: 17px;
}

.linha-destaque {
  height: 2px;
  margin: 20px 0 24px;
  background: linear-gradient(90deg, var(--vermelho), var(--azul-principal));
}

form {
  display: grid;
  gap: 18px;
}

.campo-grid {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
}

.campo-icone {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-top: 27px;
  font-size: 24px;
  color: var(--azul-principal);
  background: var(--azul-claro);
  border-radius: 12px;
}

.campo {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.campo label,
.campo .label {
  font-weight: 700;
  font-size: 15px;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 15px 16px;
  font: inherit;
  color: #2c4860;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 10px;
  outline: none;
  transition: 0.2s ease;
}

.campo input:focus,
.campo textarea:focus {
  border-color: var(--azul-principal);
  box-shadow: 0 0 0 4px rgba(13, 132, 200, 0.12);
}

.campo textarea {
  min-height: 120px;
  resize: vertical;
}

.opcoes-sexo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.opcao-sexo {
  min-height: 58px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #2c4860;
  font-size: 14px;
  font-weight: 500 !important;
  border: 1px solid var(--borda);
  border-radius: 10px;
  transition: 0.2s ease;
}

.opcao-sexo input {
  position: absolute;
  opacity: 0;
}

.radio-custom {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 2px solid #aab8c3;
  border-radius: 50%;
  position: relative;
}

.opcao-sexo input:checked + .radio-custom {
  border-color: var(--vermelho);
}

.opcao-sexo input:checked + .radio-custom::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  inset: 4px;
  background: var(--vermelho);
  border-radius: 50%;
}

.opcao-sexo:has(input:checked) {
  border-color: var(--vermelho);
  box-shadow: 0 0 0 2px rgba(237, 0, 41, 0.08);
}

.campo-invisivel {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.botao-enviar {
  width: min(650px, 100%);
  margin: 6px auto 0;
  padding: 17px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  color: var(--branco);
  background: linear-gradient(90deg, var(--vermelho), #ff1741);
  border: none;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(237, 0, 41, 0.22);
  transition: 0.2s ease;
}

.botao-enviar:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, var(--vermelho-hover), var(--vermelho));
}

.botao-enviar:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.botao-icone { font-size: 20px; }

.aviso-seguranca {
  text-align: center;
  color: #68738d;
  font-size: 13px;
}

.seguranca-card {
  margin-top: 22px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 76px 1fr 90px;
  gap: 20px;
  align-items: center;
  background: linear-gradient(90deg, #eaf7fd, #f4fbff);
  border-radius: 22px 22px 0 0;
}

.seguranca-icone {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--branco);
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(145deg, var(--azul-principal), var(--azul-escuro));
  border-radius: 50%;
}

.seguranca-texto h3 {
  margin-bottom: 7px;
  font-size: 22px;
}

.seguranca-texto p {
  max-width: 720px;
  color: #2d526d;
  line-height: 1.55;
}

.cruz-decorativa {
  text-align: center;
  color: var(--vermelho);
  font-size: 62px;
  font-weight: 800;
  filter: drop-shadow(0 8px 12px rgba(237,0,41,0.12));
}

.rodape {
  min-height: 68px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  color: var(--branco);
  background: linear-gradient(90deg, #0076b9, #005992);
  border-radius: 0 0 22px 22px;
}

.rodape a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.rodape a span {
  color: var(--branco);
  font-size: 23px;
}

.rodape-divisor {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.5);
}

@media (max-width: 850px) {
  .beneficios { gap: 16px; }
  .divisor { display: none; }
  .opcoes-sexo { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding-bottom: 88px;
    border-radius: 0 0 35% 5% / 0 0 6% 2%;
  }

  .beneficios {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto;
  }

  .beneficio { justify-content: flex-start; }

  .pagina {
    width: min(100% - 20px, 1080px);
    margin-top: -42px;
  }

  .form-card {
    padding: 25px 18px;
    border-radius: 22px;
  }

  .form-cabecalho { align-items: flex-start; }

  .icone-destaque {
    width: 58px;
    height: 58px;
    font-size: 25px;
  }

  .campo-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .campo-icone { display: none; }

  .seguranca-card {
    grid-template-columns: 60px 1fr;
    padding: 20px;
  }

  .seguranca-icone {
    width: 56px;
    height: 56px;
    font-size: 25px;
  }

  .cruz-decorativa { display: none; }

  .rodape {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .rodape-divisor { display: none; }
}

@media (max-width: 480px) {
  .logo { width: 94vw; }
  .hero h1 { font-size: 25px; }
  .hero-subtitle { font-size: 14px; }
  .form-cabecalho h2 { font-size: 23px; }
  .form-cabecalho p { font-size: 14px; }
  .botao-enviar { font-size: 14px; }
}
