* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --bg-3: #111111;
  --card: rgba(22, 22, 22, 0.78);
  --card-strong: rgba(28, 28, 28, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(212, 175, 55, 0.22);
  --text: #f5f5f5;
  --muted: #b7b7b7;
  --gold: #d4af37;
  --gold-soft: #f1cf70;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.05), transparent 24%),
    linear-gradient(180deg, #040404 0%, #090909 50%, #050505 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(212, 175, 55, 0.15);
  top: 80px;
  right: -80px;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: rgba(212, 175, 55, 0.09);
  bottom: 100px;
  left: -60px;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold-soft);
}

.brand--logo {
  display: flex;
  align-items: center;
  letter-spacing: normal;
  font-size: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.brand--logo img {
  height: 42px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.menu a {
  color: var(--muted);
  transition: 0.25s ease;
}

.menu a:hover {
  color: #fff;
}

.menu-btn {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-soft) !important;
  background: rgba(212, 175, 55, 0.05);
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.badge,
.section-kicker,
.panel-label,
.module-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge {
  padding: 9px 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.06);
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 780px;
}

.hero-content h1 span {
  color: var(--gold-soft);
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #121212;
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}

.metric strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-window {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.96));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.panel-content {
  padding: 18px;
}

.panel-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 18px;
}

.panel-card-wide {
  margin-bottom: 14px;
}

.panel-card h3 {
  margin: 8px 0 10px;
  font-size: 1.15rem;
}

.panel-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.panel-card.mini {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.panel-card.mini strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.3;
}

.panel-card.mini p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section {
  padding: 90px 0;
}

.section-dark {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card,
.module-card,
.feature-box {
  background: linear-gradient(180deg, rgba(25,25,25,0.88), rgba(14,14,14,0.92));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.info-card h3,
.module-card h3,
.feature-box h3 {
  font-size: 1.2rem;
  margin: 14px 0 10px;
}

.info-card p,
.module-card p,
.feature-box p {
  color: var(--muted);
}

.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-soft);
  font-weight: 800;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.module-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.22);
}

.module-card--logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.module-logo {
  width: 100%;
  max-width: 265px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
}

.module-card--logo h3 {
  margin-top: 0;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.feature-left h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  margin: 12px 0 16px;
}

.feature-left p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cta-section {
  padding-top: 30px;
}

.cta-card {
  padding: 48px 30px;
  text-align: center;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255,255,255,0.03)),
    rgba(16,16,16,0.95);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 12px 0 14px;
}

.cta-card p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.contact-copy p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.28);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: #050505;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.footer p {
  color: var(--muted);
}

/* BOTÃO FLUTUANTE WHATSAPP — VERSÃO PREMIUM COM LEVE QUIQUE */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(37, 211, 102, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  transition:
    filter 0.25s ease,
    box-shadow 0.25s ease;
  overflow: visible;
  animation: whatsappFloatBounce 3.2s ease-in-out infinite;
}

.whatsapp-float:hover {
  filter: brightness(1.04);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.38),
    0 10px 24px rgba(37, 211, 102, 0.28);
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.02);
}

.whatsapp-float:active {
  transform: translateY(-1px) scale(0.99);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.18);
  z-index: -2;
  animation: whatsappPulse 1.8s infinite;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.02)
  );
  pointer-events: none;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

@keyframes whatsappFloatBounce {
  0% {
    transform: translateY(0);
  }
  8% {
    transform: translateY(-4px);
  }
  14% {
    transform: translateY(0);
  }
  18% {
    transform: translateY(-2px);
  }
  22% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .feature-layout,
  .contact-layout,
  .cards-3,
  .modules-grid,
  .feature-right {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .module-logo {
    max-width: 300px;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand--logo img {
    height: 38px;
  }

  .menu {
    gap: 12px;
    width: 100%;
  }

  .menu a {
    font-size: 0.95rem;
  }

  .menu-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 50px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-metrics {
    gap: 10px;
  }

  .metric {
    padding: 14px;
  }

  .panel-window {
    max-width: 100%;
    border-radius: 22px;
  }

  .panel-top {
    padding: 12px 14px;
  }

  .panel-content {
    padding: 16px;
  }

  .panel-card {
    padding: 16px;
    border-radius: 16px;
  }

  .panel-card-wide {
    margin-bottom: 12px;
  }

  .panel-card h3 {
    font-size: 1rem;
    line-height: 1.3;
    margin: 6px 0 8px;
  }

  .panel-card p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .panel-label {
    font-size: 0.82rem;
  }

  .panel-mini-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .panel-card.mini {
    min-height: auto;
  }

  .panel-card.mini strong {
    font-size: 0.96rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .feature-left h2,
  .contact-copy h2,
  .cta-card h2 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .module-logo {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 16px;
  }

  .whatsapp-float svg {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100%, 92%);
  }

  .hero {
    padding-top: 44px;
  }

  .badge {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .panel-window {
    border-radius: 18px;
  }

  .panel-content {
    padding: 14px;
  }

  .panel-card {
    padding: 14px;
  }

  .panel-card h3 {
    font-size: 0.96rem;
  }

  .panel-card p,
  .panel-card.mini p {
    font-size: 0.88rem;
  }

  .section-heading h2,
  .feature-left h2,
  .contact-copy h2,
  .cta-card h2 {
    font-size: 1.65rem;
  }
}