/*
  Brand palette
  - Primary: #044065
  - Accent:  #64DEE1
*/
:root {
  --primary: #044065;
  --accent: #64DEE1;
  --title-font: "BW Gradual", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --bg: #e9f6f8;
  --hero-bg: url('background.png');
  --panel: rgba(255, 255, 255, 0.82);
  --panel-2: rgba(255, 255, 255, 0.92);
  --text: #044065;
  --muted: rgba(4, 64, 101, 0.74);
  --border: rgba(4, 64, 101, 0.14);
  --shadow: 0 18px 60px rgba(4, 64, 101, 0.12);
  --shadow-sm: 0 10px 30px rgba(4, 64, 101, 0.10);
  --accent-2: #2bbfcc;
  --danger: #b00020;
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1080px;
  --header-h: 72px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 22px;
  --space-5: 32px;
}

@font-face {
  font-family: "BW Gradual";
  src: url('fonts/BwGradual-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BW Gradual";
  src: url('fonts/BwGradual-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BW Gradual";
  src: url('fonts/BwGradual-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BW Gradual";
  src: url('fonts/BwGradual-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Campana Script";
  src: url('fonts/CampanaScript.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: none;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Home: evita “barra” clara abaixo do hero */
.page-home {
  background-color: #044065;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

/* Home: header transparente sobre o poster */
.page-home .site-header {
  background: #ffffff;
  border-bottom: 0;
  color: #044065;
}

.page-home .brand-logo {
  filter: none;
}

/* Home: hero sempre preenche a tela (sem “faixa” no final) */
.page-home .hero {
  margin-top: 0;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: var(--header-h);
  padding-bottom: max(0px, env(safe-area-inset-bottom));
}

::selection {
  background: rgba(100, 222, 225, 0.55);
}

h1,
h2,
h3,
.section-header p,
.brand {
  font-family: var(--title-font);
}

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

.container {
  width: min(var(--container), calc(100% - 20px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(4, 64, 101, 0.10);
  color: rgba(4, 64, 101, 0.92);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0;
  gap: 16px;
  position: relative;
}

.site-header-center .header-inner-center {
  justify-content: center;
}

.site-header-center .brand {
  min-width: 0;
}

.site-header-center .brand-logo {
  width: 96px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 120px;
}

.brand-logo {
  width: 92px;
  height: auto;
  display: block;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(4, 64, 101, 0.12);
  background: rgba(255, 255, 255, 0.9);
  appearance: none;
  padding: 0;
  line-height: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-icon {
  width: 22px;
  height: 22px;
  color: rgba(4, 64, 101, 0.92);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));

  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: #044065;
  display: flex;
  align-items: center;
}

/* Hero estilo poster (imagem de referência) */
.hero--poster {
  background-color: var(--primary);
  background-image:
    linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%),
    url('background.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.hero.hero--poster::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('asset-vetor.png');
  background-size: auto 100%;
  background-position: 100% center;
  background-repeat: no-repeat;
  opacity: 0.64;
  pointer-events: none;
}

.hero.hero--poster::after {
  content: none;
  display: none;
}

.hero-poster {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0;
}

.hero-poster-content {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-poster-art {
  position: relative;
  min-height: 520px;
  height: min(78vh, 860px);
  width: 100%;
  overflow: visible;
}

.hero-art-vector,
.hero-art-dog {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}



.hero-art-dog {
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.30));
}

@media (min-width: 981px) {
  .hero-art-dog {
    /* Desktop: maior e alinhado centro-direita (pode vazar/recortar) */
    inset: auto;
    top: 50%;
    right: clamp(-280px, -24vw, -120px);
    height: 102%;
    width: auto;
    object-fit: contain;
    object-position: right center;
    transform: translateY(-50%) scale(1.12);
    transform-origin: 100% 50%;
  }
}

.hero-pill {
  margin-bottom: 16px;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 215, 74, 1);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 14px;
  font-family: var(--title-font);
}

.hero-title {
  margin: 0;
  display: grid;
  gap: 6px;
}

.hero-title-top {
  font-family: var(--title-font);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(24px, 4vmin, 40px);
  line-height: 1.02;
  color: rgba(255, 255, 255, 0.92);
}

.hero-title-main {
  font-family: var(--title-font);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(52px, 9vmin, 96px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.98);
}

.hero-title-sub {
  margin: -10px 0 0;
  display: grid;
  gap: 0;
  align-items: start;
}

.hero-sub-prefix {
  font-size: clamp(18px, 2.5vmin, 28px);
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
}

.hero-sub-script {
  font-family: "Campana Script", "BW Gradual", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(74px, 16vmin, 160px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.98);
  /* Positioning relative to 'aplicada à' */
  margin-top: -0.35em;
  margin-bottom: -0.2em;
  margin-left: 0.25em;
  display: inline-block;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-sub-script {
    /* Gradient text per user request */
    background: linear-gradient(270deg, #64DEE1 0.06%, #FFFFFF 116.81%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.hero-desc {
  margin: 6px 0 0;
  max-width: 62ch;
  font-size: clamp(16px, 1.75vmin, 20px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.hero-desc strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
}

.hero-bottom {
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 18px;
  align-items: center;
}

.hero-date-week {
  font-family: var(--title-font);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(16px, 2.5vmin, 22px);
  line-height: 1;
}

.hero-date-day {
  font-family: var(--title-font);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(30px, 4.5vmin, 42px);
  line-height: 1;
}

.hero-bottom-divider {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-place {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-place-title {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 16px;
  line-height: 1.1;
}

.hero-place-line {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.86);
}

.hero-cta {
  align-self: flex-start;
  margin-top: 10px;
  background: #ffe000 !important;
  color: rgba(6, 64, 100, 0.96) !important;
  border-color: transparent !important;
  border-radius: 999px !important;
  padding: 12px 42px !important;
  font-family: var(--title-font);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.hero-cta:hover {
  filter: brightness(1.02);
}

.hero-cta:active {
  transform: translateY(1px);
}

.form-section {
  padding: 54px 0 74px;
  background: var(--bg);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(320px, 54ch) minmax(360px, 580px);
  gap: 56px;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

.form-copy {
  color: rgba(4, 64, 101, 0.86);
  max-width: 54ch;
  padding-top: 12px;
  justify-self: center;
  text-align: left;
}

.form-copy-title {
  margin: 0 0 14px;
  font-family: var(--title-font);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: rgba(4, 64, 101, 0.96);
  font-size: clamp(30px, 3.2vw, 48px);
}

.form-copy p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(4, 64, 101, 0.78);
}

.form-copy-highlight {
  font-weight: 800;
  color: rgba(4, 64, 101, 0.90);
}

.form-callout {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(4, 64, 101, 0.14);
}

.form-callout-badge {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(4, 64, 101, 0.92);
  font-family: var(--title-font);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11.5px;
}

.form-callout-text {
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(4, 64, 101, 0.74);
}

.form-callout-text strong {
  color: rgba(4, 64, 101, 0.92);
  font-weight: 900;
}

.form-section .hero-form {
  max-width: 520px;
  margin: 0;
}

.form-layout .hero-form {
  width: min(580px, 100%);
  max-width: 580px;
  justify-self: center;
}

@media (max-width: 980px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-copy {
    max-width: none;
    padding-top: 0;
  }

  .form-layout .hero-form {
    justify-self: stretch;
  }
}

@media (max-width: 980px) and (hover: none) and (pointer: coarse) {
  .hero--poster {
    /* Vetor removido do background direto para ser aplicado via pseudoelemento com opacidade */
    background-image:
      linear-gradient(180deg, rgba(76, 190, 191, 1) 0%, rgba(34, 128, 161, 1) 44%, rgba(6, 64, 100, 1) 100%),
      url('background.png');
    background-size: cover, cover;
    background-position: center, center;
  }

  .hero.hero--poster::before {
    background-position: center;
    opacity: 0.14;
  }

  .hero-poster {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .hero-poster-art {
    display: none;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .hero-date {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-bottom-divider {
    display: none;
  }

  .hero-place {
    padding-bottom: 18px;
  }

  .hero-sub-script {
    transform: none;
    margin-top: -0.20em;
    margin-bottom: -0.12em;
  }

  .hero-title-sub {
    margin-top: -2px;
    gap: 6px;
  }

  .hero-desc {
    padding-top: 0;
  }
}

@media (max-width: 520px) and (hover: none) and (pointer: coarse) {
  .hero-title-top {
    font-size: clamp(26px, 4.6vmin, 44px);
  }

  .hero-title-main {
    font-size: clamp(58px, 10vmin, 104px);
  }

  .hero-sub-prefix {
    font-size: clamp(20px, 3.1vmin, 32px);
  }

  .hero-sub-script {
    font-size: clamp(116px, 24vmin, 256px);
    transform: none;
    margin-top: -0.32em;
    margin-bottom: -0.14em;
  }

  .hero-title-sub {
    margin-top: 0;
    gap: 8px;
  }

  .hero-desc {
    padding-top: 2px;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
  }

  .hero-pill {
    font-size: 12px;
    padding: 8px;
  }
}

/* iOS Safari/WebKit (touch): corrige métrica/baseline do script no mobile */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 980px) and (hover: none) and (pointer: coarse) {
    .hero-sub-script {
      transform: translateY(-0.14em);
    }
  }

  @media (max-width: 520px) and (hover: none) and (pointer: coarse) {
    .hero-sub-script {
      transform: translateY(-0.18em);
    }
  }
}

.hero-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-thanks h1,
.hero-thanks .lead,
.hero-thanks .eyebrow {
  color: #ffffff;
}

/* Obrigado: fundo branco e sem imagem no topo */
.page-thanks {
  background: #ffffff;
}

.page-thanks .hero {
  background: #ffffff;
}

.page-thanks .hero::before,
.page-thanks .hero::after {
  content: none;
  display: none;
}

.page-thanks .hero-thanks h1,
.page-thanks .hero-thanks .lead,
.page-thanks .hero-thanks .eyebrow {
  color: rgba(4, 64, 101, 0.96);
}

.page-thanks .hero-thanks .lead {
  color: rgba(4, 64, 101, 0.78);
}

.page-thanks .hero-thanks .kicker {
  margin: 10px 0 12px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(4, 64, 101, 0.92);
}

.page-thanks .eyebrow {
  background: rgba(4, 64, 101, 0.06);
  border-color: rgba(4, 64, 101, 0.12);
  color: rgba(4, 64, 101, 0.82);
}

.page-thanks .hero-card {
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(4, 64, 101, 0.12);
}

.page-thanks .button {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.page-thanks .icon-list {
  margin: 14px 0 0;
  gap: 12px;
}

.page-thanks .icon {
  color: rgba(4, 64, 101, 0.92);
}

.page-thanks .icon-list dd {
  color: rgba(4, 64, 101, 0.82);
}

.page-thanks .icon-list dd strong {
  color: rgba(4, 64, 101, 0.96);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 20% 10%, rgba(100, 222, 225, 0.22), transparent 60%),
    radial-gradient(1200px 520px at 70% 60%, rgba(255, 255, 255, 0.10), transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.35));
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 46px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 36px 0;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero-copy h1 {
  color: #64DEE1;
  font-weight: 800;
  margin: 0;
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.90);
  margin: 0;
}

/* Home: dar mais destaque ao H1 e reduzir apenas o texto de apoio */
.page-home .hero-copy h1 {
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.page-home .hero-copy .lead {
  font-size: clamp(14.5px, 1.25vw, 15.75px);
  line-height: 1.55;
}

/* Desktop: mais respiro entre os textos principais do hero */
@media (min-width: 981px) {
  .page-home .hero-copy .eyebrow+h1 {
    margin-top: 6px;
  }

  .page-home .hero-copy h1+.lead {
    margin-top: 8px;
  }

  .page-home .hero-copy .lead+.kicker {
    margin-top: 10px;
  }
}

.hero-copy .kicker {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  font-weight: 650;
}

.hero-copy .small-note {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 13px;
}

.hero-copy .eyebrow {
  margin: 0;
}


.hero-visual {
  min-height: 320px;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  font-size: clamp(34px, 3.9vw, 56px);
  line-height: 1.03;
  margin: 16px 0 14px;
  letter-spacing: -0.03em;
}

.lead {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 66ch;
}

.muted-note {
  margin: 12px 0 0;
  color: rgba(4, 64, 101, 0.68);
  font-size: 13px;
}

.form-subtitle {
  margin: -4px 0 14px;
  color: rgba(4, 64, 101, 0.66);
  font-size: 13px;
  font-weight: 600;
}

/* Formulário do hero: título/subtítulo centralizados */
.hero-form .card-title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.hero-form .form-subtitle {
  text-align: center;
  font-size: 13.5px;
  margin: -2px 0 16px;
}

/* Hero meta row (sem cara de botão) */
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding-top: var(--space-2);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  font-size: 13.5px;
}

.meta-item strong {
  color: rgba(255, 255, 255, 0.92);
}

.meta-dot {
  opacity: 0.65;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.small-note {
  color: var(--muted);
  margin-top: 16px;
  font-size: 13px;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: rgba(4, 64, 101, 0.90);
  padding: 8px 6px;
  border-radius: 10px;
}

.link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* hero icon list */
.icon-list {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.icon-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0;
}

.icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: rgba(100, 222, 225, 0.95);
}

.icon svg {
  width: 16px;
  height: 16px;
}

.icon-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.hero-copy .icon-list {
  margin: 0;
  padding-top: var(--space-2);
  gap: 10px;
}

.hero-copy .icon {
  width: 26px;
  height: 26px;
}

.hero-copy .icon svg {
  width: 15px;
  height: 15px;
}

.hero-copy .icon-item {
  grid-template-columns: 26px 1fr;
  gap: 12px;
}

.hero-copy .icon-list dd strong {
  color: rgba(255, 255, 255, 0.92);
}

/* CTA panel */
.cta-panel {
  border: 1px solid rgba(4, 64, 101, 0.12);
  background:
    radial-gradient(900px 240px at 20% 20%, rgba(100, 222, 225, 0.35), transparent 60%),
    rgba(255, 255, 255, 0.84);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.cta-title {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.cta-text {
  margin: 8px 0 0;
  color: rgba(4, 64, 101, 0.70);
  font-weight: 600;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid rgba(4, 64, 101, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  color: rgba(4, 64, 101, 0.92);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 900;
  color: rgba(4, 64, 101, 0.70);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-body {
  margin-top: 10px;
  color: rgba(4, 64, 101, 0.78);
  font-size: 14px;
  max-width: 80ch;
}

.hero-form {
  align-self: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

#formulario {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

.honeypot {
  display: none;
}

.hero-cta-mobile {
  display: none !important;
}

.hero-cta-mobile {
  background: #64DEE1 !important;
  color: #044065 !important;
  border-color: rgba(4, 64, 101, 0.18) !important;
}

/* local/map section */
.map-grid {
  align-items: stretch;
}

.info-stack {
  display: grid;
  gap: 12px;
}

.map-card {
  height: 100%;
}

.info-card {
  border: 1px solid rgba(4, 64, 101, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  padding: 14px;
}

.info-title {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(4, 64, 101, 0.70);
}

.info-text {
  margin: 0;
  color: rgba(4, 64, 101, 0.90);
  font-weight: 600;
}

.info-card .link {
  margin-top: 10px;
  padding-left: 0;
  color: rgba(4, 64, 101, 0.92);
}

.info-card .link:hover {
  background: transparent;
  text-decoration: underline;
}

.map-card {
  border: 1px solid rgba(4, 64, 101, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  overflow: hidden;
}

.map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: rgba(4, 64, 101, 0.06);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-card {
  border: 1px solid rgba(4, 64, 101, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px;
}

.card-title {
  margin: 0 0 12px;
  font-size: 16px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  color: rgba(4, 64, 101, 0.92);
}

.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 1px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.keyvals {
  display: grid;
  gap: 10px;
}

.keyvals-2 {
  grid-template-columns: 1fr;
}

.kv {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.kv .k {
  color: var(--muted);
  font-size: 13px;
}

.kv .v {
  color: rgba(4, 64, 101, 0.96);
  font-weight: 700;
  font-size: 13px;
  text-align: right;
}

.section {
  padding: 44px 0;
}

.section-about {
  background-color: #64DEE1;
}

.section-about .section-header h2,
.section-about .section-header p,
.section-about .prose {
  color: #044065;
}

.about-grid {
  align-items: start;
  gap: 28px;
  margin-top: 18px;
}

.section-about .prose p {
  margin: 0 0 16px;
}

.audience-block {
  margin-top: 6px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(4, 64, 101, 0.10);
}

.subhead {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(4, 64, 101, 0.75);
}

.section-about .bullets {
  color: rgba(4, 64, 101, 0.88);
}

.section-about .bullets li {
  margin: 6px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(4, 64, 101, 0.08);
  border-bottom: 1px solid rgba(4, 64, 101, 0.08);
}

.section-gradient {
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(4, 64, 101, 0.08);
  border-bottom: 1px solid rgba(4, 64, 101, 0.08);
}

.section-header h2 {
  margin: 0;
  font-size: 14px;
  color: rgba(4, 64, 101, 0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.prose {
  margin-top: 18px;
  color: rgba(4, 64, 101, 0.86);
  max-width: 80ch;
}

.prose p {
  margin: 0 0 12px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

/* Learn list (substitui cards) */
.learn-grid {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.learn-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(4, 64, 101, 0.10);
}

.learn-item strong {
  display: block;
  font-size: 15px;
}

.learn-item span {
  display: block;
  margin-top: 4px;
  color: rgba(4, 64, 101, 0.72);
  font-weight: 600;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(4, 64, 101, 0.88);
}

.bullets li {
  margin: 8px 0;
}

.bullets-tight li {
  margin: 6px 0;
}

.info-box {
  border: 1px solid rgba(4, 64, 101, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.info-box-dark {
  background: rgba(4, 64, 101, 0.06);
  border-color: rgba(4, 64, 101, 0.16);
}

.info-box h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.info-box p {
  margin: 0;
  color: rgba(4, 64, 101, 0.82);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mini-card {
  position: relative;
  border: 1px solid rgba(4, 64, 101, 0.12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.mini-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: rgba(4, 64, 101, 0.9);
  opacity: 0.5;
}

.mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 222, 225, 0.55);
  box-shadow: var(--shadow);
}

.mini-card:hover::before {
  opacity: 0.85;
}

.mini-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.mini-card p {
  margin: 0;
  color: rgba(4, 64, 101, 0.78);
  font-size: 14px;
}

.form {
  border: 1px solid rgba(4, 64, 101, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

label {
  font-weight: 600;
  font-size: 13px;
  color: rgba(4, 64, 101, 0.92);
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(4, 64, 101, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  outline: none;
}

input::placeholder {
  color: rgba(4, 64, 101, 0.42);
}

input:focus {
  border-color: rgba(100, 222, 225, 0.9);
  box-shadow: 0 0 0 4px rgba(100, 222, 225, 0.22);
}

input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(100, 222, 225, 0.55);
  outline-offset: 2px;
}

fieldset {
  border: 1px solid rgba(4, 64, 101, 0.14);
  border-radius: 14px;
  padding: 12px;
}

legend {
  padding: 0 8px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(4, 64, 101, 0.92);
}

.req {
  color: rgba(4, 64, 101, 0.62);
  font-weight: 700;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(4, 64, 101, 0.86);
  font-size: 14px;
}

.check input {
  margin-top: 3px;
}

.hint {
  font-size: 12px;
  color: rgba(4, 64, 101, 0.62);
}

.error {
  margin-top: 10px;
  color: var(--danger);
  font-weight: 600;
  font-size: 13px;
}

.fineprint {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(4, 64, 101, 0.62);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(4, 64, 101, 0.18);
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(4, 64, 101, 0.28);
}

.button:active {
  transform: translateY(0px);
}

.button-lg {
  padding: 12px 16px;
  font-size: 15px;
}

.button-full {
  width: 100%;
  border-radius: 14px;
  padding: 12px 14px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.70);
}

/* darker primary button option (currently used in header on larger screens) */
.button-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: rgba(4, 64, 101, 0.35);
}

.button-primary:hover {
  background: rgba(4, 64, 101, 0.92);
}

.footer {
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--primary);
  color: rgba(255, 255, 255, 0.92);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-inner .muted {
  text-align: center;
}

.footer .muted {
  line-height: 1.35;
}

.footer strong {
  color: #ffffff;
}

.footer .muted {
  color: rgba(255, 255, 255, 0.78);
}

.footer .muted {
  font-size: 13px;
}

.muted {
  color: rgba(4, 64, 101, 0.62);
}

/* helpers */
.container-narrow {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}

.mt-18 {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 68ch;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .keyvals-2 {
    grid-template-columns: 1fr;
  }

  .kv .v {
    text-align: left;
  }

  .header-inner {
    flex-wrap: nowrap;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 36px 0;
  }

  .section-header p {
    font-size: 20px;
  }

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

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

  .header-inner {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .header-actions .button {
    padding: 8px 12px;
    font-size: 13px;
  }

  .header-actions .link {
    font-size: 13px;
    padding: 8px 10px;
  }

  .brand-logo {
    width: 74px;
  }

  .cta-row {
    width: 100%;
  }

  .hero-cta-mobile {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-mobile {
    display: inline-flex !important;
  }

  .hero-grid {
    padding: 28px 0;
  }

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