/* =============== */
/* VARIÁVEIS       */
/* =============== */
:root {
  --bg-body: #050505;
  --bg-soft: #0b0b0c;
  --bg-section-soft: #0f1012;
  --bg-card: #111214;
  --bg-card-soft: #15161a;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;
  --border-subtle: #1f2933;
  --accent: #e5e7eb;
  --accent-soft: rgba(249, 250, 251, 0.06);
  --accent-pill: rgba(249, 250, 251, 0.12);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --nav-height: 76px;
  --transition: all 0.28s ease;
}

/* =============== */
/* RESET           */
/* =============== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
}

/* Remove default styles */
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

/* =============== */
/* LAYOUT          */
/* =============== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
.section {
  padding: 96px 0;
  background: var(--bg-body);
}

.section-soft {
  background: var(--bg-section-soft);
}

/* Section header */
.section-header {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.1rem;
  font-weight: 400; /* Fonte mais fina */
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* =============== */
/* HEADER / NAV    */
/* =============== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 6, 0.9),
    rgba(5, 5, 6, 0.6),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-main);
}

.logo span {
  font-weight: 400;
}

.logo i {
  width: 20px;
  height: 20px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--text-main);
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  border-color: var(--text-main);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* =============== */
/* HERO FULLSCREEN */
/* =============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 72px);
  padding-bottom: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(130deg, rgba(5, 5, 7, 0.9), rgba(15, 23, 42, 0.7)),
    url("bg-hero-desktop.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.1), transparent 55%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

/* Hero textos */
.hero-content {
  max-width: 560px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-pill);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 480px;
  margin-bottom: 28px;
}

/* Highlights */
.hero-highlights {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.hero-highlight i {
  width: 18px;
  height: 18px;
}

/* Hero actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: #f9fafb;
  color: #030712;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(15, 23, 42, 0.55);
}

.btn-full {
  width: 100%;
}

/* Hero meta */
.hero-meta {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Side card */
.hero-side-info {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: rgba(15, 23, 42, 0.84);
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
  max-width: 320px;
}

.hero-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.hero-card-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.hero-card-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-main);
}

.hero-card-list i {
  width: 16px;
  height: 16px;
}

/* =============== */
/* TRUST BAR       */
/* =============== */
.trust-bar {
  background: var(--bg-section-soft);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  padding: 18px 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.8);
  color: var(--text-main);
  font-size: 0.78rem;
}

/* =============== */
/* CARDS           */
/* =============== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 22px 22px 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: rgba(248, 250, 252, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.card h3 {
  font-size: 1.02rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.card-list {
  font-size: 0.86rem;
  color: var(--text-soft);
  padding-left: 0;
}

.card-list li {
  margin-top: 4px;
}

/* =============== */
/* STEPS           */
/* =============== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.step {
  background: var(--bg-card-soft);
  border-radius: var(--radius-md);
  padding: 18px 18px 20px;
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 252, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-bottom: 10px;
}

.step h3 {
  font-size: 0.98rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* =============== */
/* SECTORS         */
/* =============== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.sector-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 20px 22px;
  border: 1px solid var(--border-subtle);
}

.sector-card i {
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
}

.sector-card h3 {
  font-size: 0.98rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.sector-card p {
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* =============== */
/* BENEFITS        */
/* =============== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.benefit {
  background: var(--bg-card-soft);
  border-radius: var(--radius-md);
  padding: 20px 20px 22px;
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.benefit i {
  width: 22px;
  height: 22px;
  margin-bottom: 8px;
}

.benefit h3 {
  font-size: 0.96rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.benefit p {
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* =============== */
/* FAQ             */
/* =============== */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 12px 14px;
  margin-bottom: 6px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  cursor: pointer;
}

.faq-item span {
  text-align: left;
  padding-right: 14px;
}

.faq-item i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  padding: 0 6px;
}

.faq-panel p {
  font-size: 0.86rem;
  color: var(--text-soft);
  padding: 6px 10px 10px;
}

/* Estado aberto */
.faq-item.active {
  background: var(--bg-card-soft);
}

.faq-item.active i {
  transform: rotate(180deg);
}

/* =============== */
/* CONTATO         */
/* =============== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: flex-start;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  width: 18px;
  height: 18px;
}

.contact-note {
  margin-top: 18px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 14px 16px 14px;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.contact-note ul {
  margin-top: 6px;
}

.contact-note li + li {
  margin-top: 2px;
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 20px 20px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.form-control {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: #020617;
  color: var(--text-main);
  padding: 10px 11px;
  font-size: 0.88rem;
  font-family: inherit;
}

.form-control::placeholder {
  color: #64748b;
}

.form-control:focus {
  outline: none;
  border-color: rgba(148, 163, 184, 0.9);
}

/* =============== */
/* FOOTER          */
/* =============== */
.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: #020617;
  padding: 20px 0 26px;
  text-align: center;
}

.footer-inner {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-tagline {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
}

/* =============== */
/* WHATSAPP FLOAT  */
/* =============== */
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.6);
  z-index: 40;
  transition: transform 0.22s cubic-bezier(0.3, 1.6, 0.5, 1);
}

.floating-wa:hover {
  transform: translateY(-2px) scale(1.05);
}

/* =============== */
/* SCROLL REVEAL   */
/* =============== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============== */
/* RESPONSIVO      */
/* =============== */
@media (max-width: 960px) {
  .nav-menu {
    position: absolute;
    inset: var(--nav-height) 0 auto 0;
    padding: 14px 20px 18px;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu.open {
    display: flex;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-content-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side-info {
    justify-content: flex-start;
  }

  .hero-card {
    margin-top: 24px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: calc(var(--nav-height) + 56px);
    padding-bottom: 60px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }
}
/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-main);
}

.logo span {
  font-weight: 400;
}

/* Novo: imagem PNG do logo */
.logo-img {
  height: 78px;          /* ajuste fino aqui */
  width: auto;
  display: block;
}
.footer-logo {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  height: 124px;   /* ajuste fino */
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-logo-img:hover {
  opacity: 1;
}
/* ======================== */
/* SESSÃO DO LOGO DESTACADO */
/* ======================== */

.brand-section {
  padding: 10px 0;                 /* respiro grande */
  background: var(--bg-body);       /* segue o tema escuro da página */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-logo {
  width: 560px;                     /* tamanho grande */
  max-width: 70vw;                  /* responsivo */
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0px 8px 28px rgba(0,0,0,0.6));
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Hover elegante */
.brand-logo:hover {
  transform: scale(1.04);
  opacity: 1;
}
@media (max-width: 600px) {
  .trust-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .trust-tags {
    justify-content: center;
  }
}
