﻿/* Cores principais da pagina. Voce pode trocar estes valores para mudar a identidade visual. */
:root {
  --navy: #07182d;
  --navy-soft: #102a46;
  --gold: #caa15a;
  --gold-dark: #a77b35;
  --white: #ffffff;
  --light: #f5f7fa;
  --gray: #667085;
  --text: #111827;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(7, 24, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

.topbar-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 24px;
  border-radius: 8px;
}

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

.brand strong {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  color: #cbd5e1;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #dbe3ef;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.topbar-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.topbar-button {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
}

.primary-button {
  background: linear-gradient(90deg, var(--navy), var(--navy-soft));
  color: var(--white);
  box-shadow: var(--shadow);
}

.secondary-button {
  background: var(--gold);
  color: var(--navy);
}

.topbar-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.button-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
}

.hero {
  padding: 76px 0 68px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(245, 247, 250, 0.9)),
    radial-gradient(circle at 80% 10%, rgba(202, 161, 90, 0.2), transparent 30%);
}

.hero-grid,
.two-columns,
.final-cta-grid,
.footer-grid {
   display: flex;
  justify-content: center;
}

.hero-copy {
  max-width: 760px;
  width: 100%;
}

.two-columns,
.final-cta-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 20px;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 28px;
  color: #233244;
  font-size: 20px;
}

.hero-actions {
  max-width: 560px;
}

.hero-actions .primary-button,
.final-cta .primary-button {
  width: 100%;
}

.safe-note {
  margin: 12px 0 0;
  color: var(--gray);
  font-size: 14px;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
  max-width: 620px;
}

.quick-points span {
  padding: 13px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.hero-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero-card-photo {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 36px;
  background:
    linear-gradient(rgba(7, 24, 45, 0.22), rgba(7, 24, 45, 0.42)),
    linear-gradient(135deg, #f4f0e8 0%, #d9dee7 42%, #8c9aaa 43%, #f7f8fb 100%);
  background-size: cover;
  background-position: center;
}

.photo-overlay {
  width: min(290px, 100%);
  min-height: 190px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(7, 24, 45, 0.56);
  text-align: center;
}

.play-circle {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
}

.photo-overlay small {
  color: #e5e7eb;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-row div {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--gold);
}

.trust-row span {
  color: #dbe3ef;
  font-size: 13px;
}

.section {
  padding: 76px 0;
}

.light-section {
  background: var(--light);
}

.section p,
.two-columns p {
  color: var(--gray);
}

.info-box,
.card,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(7, 24, 45, 0.07);
}

.info-box {
  margin-top: 28px;
  padding: 22px;
  border-left: 5px solid var(--gold);
}

.info-box strong,
.info-box span {
  display: block;
}

.info-box span {
  margin-top: 6px;
  color: var(--gray);
}

.card {
  padding: 34px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #344054;
}

.check-list li::before {
  content: "✓“";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.steps span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}

.steps p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 15px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding: 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.cta-strip strong,
.cta-strip span {
  display: block;
}

.cta-strip span {
  color: #dbe3ef;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--gray);
}

.final-cta {
  padding: 60px 0;
  background: linear-gradient(90deg, var(--gold), #e0bc78);
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  margin-bottom: 0;
  color: #263241;
}

.footer {
  padding: 34px 0;
  background: var(--navy);
  color: var(--white);
}

.footer p {
  margin: 8px 0 0;
  color: #dbe3ef;
}

.footer-warning {
  font-size: 14px;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .two-columns,
  .final-cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

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

  .cta-strip {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .topbar-content {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .topbar-button {
    width: 100%;
  }

  .hero-card-photo {
    min-height: 280px;
    padding: 20px;
  }

  .quick-points,
  .steps,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-row div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 54px 0;
  }

  .card {
    padding: 24px;
  }
}

