@charset "UTF-8";

:root {
  --bg-main: #07111f;
  --bg-soft: #0d1b2f;
  --bg-card: rgba(15, 29, 49, 0.72);
  --bg-card-strong: rgba(10, 20, 36, 0.92);
  --line: rgba(197, 160, 89, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);

  --text-main: #f5f7fb;
  --text-soft: #b7c2d1;
  --text-muted: #8b96a8;

  --gold: #c5a059;
  --gold-strong: #e0b86e;
  --gold-soft: rgba(197, 160, 89, 0.12);

  --white: #ffffff;
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.24);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --container: 1240px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.08), transparent 28%),
    radial-gradient(circle at right center, rgba(59, 130, 246, 0.10), transparent 22%),
    linear-gradient(180deg, #040b14 0%, #07111f 40%, #091527 100%);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

/* FUNDO */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
}

.blur-1 {
  width: 380px;
  height: 380px;
  background: rgba(197, 160, 89, 0.14);
  top: -90px;
  left: -80px;
}

.blur-2 {
  width: 420px;
  height: 420px;
  background: rgba(59, 130, 246, 0.10);
  right: -120px;
  top: 180px;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 85%);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(5, 12, 22, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--text-soft);
  font-size: 0.97rem;
  font-weight: 500;
  transition: var(--transition);
}

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

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.35);
  background: rgba(197, 160, 89, 0.08);
  color: var(--gold-strong) !important;
}

/* HERO */
.hero {
  padding: 86px 0 60px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.10);
  border: 1px solid rgba(197, 160, 89, 0.18);
  color: var(--gold-strong);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero h1 span {
  color: var(--gold-strong);
}

.hero-text {
  max-width: 640px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin: 0 0 28px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #08111d;
  box-shadow: 0 12px 32px rgba(197, 160, 89, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(197, 160, 89, 0.34);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 160, 89, 0.30);
  background: rgba(197, 160, 89, 0.08);
}

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

.hero-highlights li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold-strong) 0%, var(--gold) 65%, transparent 70%);
  box-shadow: 0 0 14px rgba(197, 160, 89, 0.5);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  width: min(100%, 540px);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow-lg);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 560px;
}

.floating-card {
  position: absolute;
  max-width: 250px;
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(7, 17, 31, 0.84);
  border: 1px solid rgba(197, 160, 89, 0.20);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: var(--white);
}

.floating-card span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.floating-card-top {
  top: 28px;
  left: -30px;
}

.floating-card-bottom {
  right: -18px;
  bottom: 38px;
}

/* TRUST */
.trust-strip {
  padding: 10px 0 34px;
}

.trust-strip-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  padding: 18px 20px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-soft);
  color: var(--text-soft);
  font-weight: 600;
}

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

.section-dark {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 50px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.split-content h2,
.objection-content h2,
.cta-container h2 {
  margin: 18px 0 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading p,
.split-content p,
.objection-content p,
.cta-container p {
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.9;
}

/* CARDS */
.cards-grid {
  display: grid;
  gap: 22px;
}

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

.info-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.info-card:hover,
.sector-card:hover,
.process-step:hover,
.mini-card:hover,
.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.24);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--gold-strong);
  border: 1px solid rgba(197, 160, 89, 0.18);
  font-weight: 800;
  margin-bottom: 18px;
}

.info-card h3,
.process-step h3,
.sector-card-content h3,
.highlight-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--white);
}

.info-card p,
.process-step p,
.sector-card-content p,
.highlight-card p,
.feature-row span,
.mini-card {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.98rem;
}

.highlight-card {
  background:
    linear-gradient(180deg, rgba(197, 160, 89, 0.06), rgba(255,255,255,0.03));
}

/* SPLIT */
.split-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.check-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.check-item {
  position: relative;
  padding: 16px 18px 16px 52px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-soft);
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.14);
  color: var(--gold-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.split-visual {
  display: flex;
  justify-content: center;
}

.feature-panel {
  width: 100%;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 24, 42, 0.96), rgba(8, 17, 31, 0.94));
  border: 1px solid rgba(197, 160, 89, 0.16);
  box-shadow: var(--shadow-lg);
}

.feature-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gold-strong);
}

/* PROCESS */
.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: var(--transition);
}

.step-number {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #08111d;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(197, 160, 89, 0.22);
}

/* SETORES */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sector-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg-card-strong);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.sector-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.sector-card:nth-child(1) img {
  object-position: center 38%;
}

.sector-card:nth-child(2) img {
  object-position: center 54%;
}

.sector-card:nth-child(6) img {
  object-position: center 42%;
}

.sector-card-content {
  padding: 22px;
}

/* OBJEÇÃO */
.objection-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(197, 160, 89, 0.16);
  box-shadow: var(--shadow-lg);
}

.objection-points {
  display: grid;
  gap: 16px;
  align-content: center;
}

.mini-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  transition: var(--transition);
}

/* CTA */
.cta-section {
  padding-top: 80px;
}

.cta-container {
  text-align: center;
  max-width: 920px;
  padding: 46px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(197, 160, 89, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 39, 0.96), rgba(7, 16, 29, 0.96));
  border: 1px solid rgba(197, 160, 89, 0.18);
  box-shadow: var(--shadow-lg);
}

.cta-container .cta-actions {
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 0;
}

/* FOOTER */
.footer {
  padding: 34px 0 42px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 58px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-strong);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .hero-container,
  .split-section,
  .objection-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-card-main {
    width: 100%;
    max-width: 680px;
  }

  .hero-image {
    min-height: 420px;
  }

  .floating-card-top {
    left: 20px;
    top: 20px;
  }

  .floating-card-bottom {
    right: 20px;
    bottom: 20px;
  }

  .cards-grid-3,
  .process-line,
  .sector-grid,
  .trust-strip-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .header-container {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .cards-grid-3,
  .process-line,
  .sector-grid,
  .trust-strip-container {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .objection-box,
  .cta-container,
  .feature-panel {
    padding: 24px;
  }
}

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

  .brand-logo {
    height: 44px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .hero-text,
  .section-heading p,
  .split-content p,
  .objection-content p,
  .cta-container p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-image {
    min-height: 320px;
  }

  .floating-card {
    position: static;
    max-width: 100%;
    margin-top: 14px;
  }

  .hero-visual {
    display: block;
  }

  .info-card,
  .process-step,
  .sector-card-content {
    padding: 22px;
  }

  .sector-card img {
    height: 200px;
  }

  .footer-container,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-contact-note {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.hero-highlights {
  margin-top: 18px;
}