:root {
  --navy: #00233b;
  --navy-dark: #001525;
  --navy-light: #123a5c;
  --white: #ffffff;
  --cream: #f2f2f2;
  --graylight: #f0f3f5;
  --dark: #242424;
  --green: #0ab264;
  --green-dark: #0c8f52;
  --wine: #6a1b1b;
  --red: #ff0000;
  --muted: #5b6470;
  --shadow-sm: 0 8px 24px rgba(11, 30, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 30, 51, 0.14);
  --radius: 16px;
  --font-base: "Open Sans", sans-serif;
  --font-heading: var(--font-base);
  --font-body: "Lato", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }

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

.accent-green { color: var(--green); }
.accent-wine { color: var(--wine); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  gap: 10px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--navy);
  opacity: 0.4;
}

.title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--navy);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 20px;
}

.title--light { color: var(--white); }

.subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.divider {
  width: 64px;
  height: 3px;
  background: var(--navy);
  border: none;
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* Botao CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 48px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease-out, transform 0.2s ease;
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn svg { width: 20px; height: 20px; }

/* Icones circulares */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 35, 59, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
}

/* Wordmark / logo (icone onda + nome + tagline) */
.logotype {
  display: inline-flex;
  align-items: center;
}

.logotype__img {
  height: 42px;
  width: auto;
}

/* Seta de scroll (pill navy com seta branca) */
.scroll-arrow {
  width: 42px;
  height: 74px;
  border-radius: 100px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.scroll-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

/* Chips de credencial */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.trust-chip svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }

/* Badge */
.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media all and (max-width: 800px) {
  .section { padding: 64px 0; }
  .btn { width: 100%; padding: 18px 24px; }
  .logotype__text { text-align: left; }
}
