:root {
  --navy: #0f2045;
  --navy-soft: #203564;
  --gold: #d4a140;
  --gold-soft: rgba(212, 161, 64, 0.12);
  --gold-line: rgba(212, 161, 64, 0.46);
  --bg: #fcfbf8;
  --white: #ffffff;
  --text: #172545;
  --muted: #62708b;
  --line: #e8e1d6;
  --card-line: rgba(15, 32, 69, 0.08);
  --shadow: 0 20px 55px rgba(15, 32, 69, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fffeff 0%, #fbfaf7 100%);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 161, 64, 0.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0.14em;
  line-height: 0.95;
  color: var(--navy);
}

.brand-subtitle {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
  font-size: 1rem;
  color: var(--navy);
}

.nav a {
  opacity: 0.95;
}

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

.header-actions {
  display: flex;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 2;
}

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

.hero-pill {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--gold-line);
  color: var(--navy);
  border-radius: 999px;
  padding: 11px 22px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-pill-star {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.1vw, 3.9rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 14px;
}

.hero-subtitle {
  max-width: 560px;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-actions-main {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.btn {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #11306b 0%, #0b2350 100%);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(15, 32, 69, 0.18);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--gold);
  color: var(--navy);
}

.btn-cta {
  min-width: 260px;
  flex-direction: column;
  gap: 2px;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.22) 42%, transparent 68%);
  transform: translateX(-130%);
  animation: ctaShine 4s ease-in-out infinite;
}

.btn-cta span,
.btn-cta small {
  position: relative;
  z-index: 1;
}

.btn-cta small {
  font-size: 0.92rem;
  color: #ffd879;
  font-weight: 700;
}

.btn-cta-secondary {
  min-width: 230px;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding-right: 12px;
}

.benefit-item:not(:last-child) {
  border-right: 1px solid rgba(212, 161, 64, 0.18);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(212, 161, 64, 0.18);
  color: var(--gold);
  font-size: 1.25rem;
}

.benefit-item p {
  margin: 0;
  color: var(--navy);
  font-size: 0.94rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 32, 69, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.hero-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 500;
  color: var(--navy);
}

.panel-trophy {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(212, 161, 64, 0.10);
  color: var(--gold);
  font-size: 1.4rem;
}

.compat-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
}

.compat-label {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 6px;
}

.compat-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 5vw, 5.4rem);
  line-height: 0.92;
  color: var(--navy);
}

.compat-ring-wrap {
  display: flex;
  justify-content: center;
}

.compat-ring {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(255,255,255,0.98) 76%, transparent 77% 100%),
    conic-gradient(var(--gold) 0 92%, rgba(212, 161, 64, 0.14) 92% 100%);
  display: grid;
  place-items: center;
}

.compat-ring-inner {
  display: grid;
  text-align: center;
  color: var(--navy);
}

.compat-ring-inner strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1;
}

.compat-ring-inner span {
  font-size: 0.95rem;
  color: var(--muted);
}

.opportunity-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  margin-bottom: 12px;
  border: 1px solid var(--card-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.opportunity-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.opportunity-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(15, 32, 69, 0.05);
}

.opportunity-left strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.opportunity-left p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.tag-blue {
  background: rgba(52, 93, 196, 0.10);
  color: #4565b5;
}

.tag-green {
  background: rgba(101, 180, 110, 0.12);
  color: #4f9e59;
}

.tag-gold {
  background: rgba(212, 161, 64, 0.12);
  color: #b98517;
}

.opportunity-right {
  text-align: right;
  color: var(--navy);
  flex: 0 0 auto;
}

.opportunity-right strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.opportunity-right span {
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-button {
  min-height: 58px;
  margin-top: 12px;
  border: 1.5px solid var(--gold-line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
}

.panel-button span {
  font-size: 1.5rem;
  line-height: 1;
}

.hero-wave {
  position: absolute;
  bottom: -8px;
  width: 34%;
  height: 200px;
  opacity: 0.55;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-wave-left {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='220' viewBox='0 0 600 220'%3E%3Cg fill='none' stroke='%23d4a140' stroke-opacity='0.30' stroke-width='1.4'%3E%3Cpath d='M0 160 C120 110 220 220 340 160 C450 105 520 190 600 150'/%3E%3Cpath d='M0 180 C120 130 220 240 340 180 C450 125 520 210 600 170'/%3E%3Cpath d='M0 200 C120 150 220 260 340 200 C450 145 520 230 600 190'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-wave-right {
  right: 0;
  transform: scaleX(-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='220' viewBox='0 0 600 220'%3E%3Cg fill='none' stroke='%23d4a140' stroke-opacity='0.30' stroke-width='1.4'%3E%3Cpath d='M0 160 C120 110 220 220 340 160 C450 105 520 190 600 150'/%3E%3Cpath d='M0 180 C120 130 220 240 340 180 C450 125 520 210 600 170'/%3E%3Cpath d='M0 200 C120 150 220 260 340 200 C450 145 520 230 600 190'/%3E%3C/g%3E%3C/svg%3E");
}

.content-section {
  padding: 84px 0;
}

.alt-section {
  background: rgba(255, 255, 255, 0.62);
}

.section-intro {
  max-width: 800px;
  margin-bottom: 36px;
  text-align: center;
}

.section-kicker {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 0;
}

.info-cards,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
}

.info-cards {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.feature-card,
.pricing-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--card-line);
  box-shadow: 0 14px 40px rgba(15, 32, 69, 0.04);
}

.info-number,
.pricing-label {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.info-card h3,
.feature-card h3,
.pricing-card h3 {
  color: var(--navy);
  margin: 10px 0 10px;
  font-size: 1.2rem;
}

.info-card p,
.feature-card p,
.pricing-card li {
  color: var(--muted);
}

.pricing-value {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin: 10px 0 14px;
}

.pricing-card ul {
  margin: 0;
  padding-left: 18px;
}

.pricing-card.featured {
  border-color: rgba(212, 161, 64, 0.32);
  box-shadow: 0 20px 45px rgba(212, 161, 64, 0.10);
}

.final-cta {
  padding-top: 24px;
}

.cta-box {
  border-radius: 28px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(251,248,242,0.98) 100%);
  border: 1px solid rgba(212, 161, 64, 0.16);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-box p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.cta-box-actions {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #1fb965;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(31, 185, 101, 0.26);
  z-index: 9999;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.site-footer {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(212, 161, 64, 0.08);
  background: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.brand-logo-footer {
  width: 56px;
  height: 56px;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  color: var(--muted);
}

.footer-contact {
  text-align: right;
  color: var(--muted);
}

@keyframes ctaShine {
  0%, 48% { transform: translateX(-130%); }
  72%, 100% { transform: translateX(130%); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .info-cards,
  .feature-grid,
  .pricing-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .benefits-row {
    grid-template-columns: 1fr;
  }

  .benefit-item:not(:last-child) {
    border-right: 0;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links,
  .footer-contact {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 92px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    padding: 18px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-subtitle {
    letter-spacing: 0.12em;
    font-size: 0.76rem;
  }

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

  .compat-ring-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 86px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand-name {
    font-size: 1.62rem;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .hero {
    padding: 32px 0 54px;
  }

  .hero-actions-main,
  .cta-box-actions {
    width: 100%;
  }

  .btn,
  .btn-cta-secondary {
    width: 100%;
  }

  .opportunity-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .opportunity-right {
    text-align: left;
  }

  .hero-wave {
    width: 60%;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    right: 16px;
    bottom: 16px;
  }
}


/* Ajustes V2 para hero mais alto e botões visíveis */
.hero-grid {
  align-items: start;
}

.hero-copy {
  align-self: start;
}

@media (max-width: 620px) {
  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .hero {
    padding: 20px 0 48px;
  }
}


/* V3 - headline mais homogênea e CTA centralizado */
.hero-copy h1 {
  max-width: 10.5ch;
  text-wrap: balance;
}

.hero-copy .hero-subtitle {
  max-width: 580px;
}

.hero-actions-main {
  width: 100%;
  justify-content: center;
}

.hero-actions-main .btn-cta {
  min-width: 290px;
}

@media (min-width: 861px) {
  .hero-copy {
    padding-right: 12px;
  }
}

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

  .hero-copy h1 {
    max-width: 11ch;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.05rem, 9.4vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }

  .hero-copy h1 {
    max-width: 11ch;
    text-wrap: balance;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    margin-bottom: 18px;
  }

  .hero-actions-main {
    margin-bottom: 16px;
  }

  .hero-actions-main .btn-cta {
    min-width: 100%;
  }

  .benefits-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-item {
    grid-template-columns: 44px 1fr;
  }
}

/* V5 - título entra da borda esquerda do monitor para a direita */
.hero-copy h1 {
  opacity: 0;
  transform: translateX(calc(-1 * (100vw - min(1180px, calc(100vw - 42px))) / 2 - 120px));
  animation: heroTitleFromLeft 1050ms cubic-bezier(0.18, 0.84, 0.28, 1) 120ms forwards;
  will-change: opacity, transform;
}

@keyframes heroTitleFromLeft {
  from {
    opacity: 0;
    transform: translateX(calc(-1 * (100vw - min(1180px, calc(100vw - 42px))) / 2 - 120px));
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 620px) {
  .hero-copy h1 {
    transform: translateX(-80vw);
    animation-name: heroTitleFromLeftMobile;
  }

  @keyframes heroTitleFromLeftMobile {
    from {
      opacity: 0;
      transform: translateX(-80vw);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy h1 {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
