:root {
  --bg: #0b0f17;
  --bg-2: #101725;
  --card: #161e2e;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f7f6f3;
  --muted: #b8c2d6;
  --primary: #007bff;
  --primary-dark: #0062cc;
  --accent: #00b4ff;
  --accent-dark: #0099e6;
  --shadow: 0 25px 60px rgba(7, 10, 18, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 120px;
}

.section-focus {
  animation: sectionFocus 1.2s ease;
}

@keyframes sectionFocus {
  0% {
    box-shadow: 0 0 0 rgba(0, 180, 255, 0);
  }
  45% {
    box-shadow: 0 0 0 8px rgba(0, 180, 255, 0.2), 0 0 30px rgba(0, 123, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 180, 255, 0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: transform 0.35s ease;
}

.header.hidden-nav {
  transform: translateY(-120%);
}

.header.visible-nav {
  transform: translateY(0);
}

.nav-island {
  width: min(1120px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  border-radius: 14px;
  background: rgba(16, 23, 37, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  gap: 20px;
}

.nav-island:hover {
  transform: scale(1.02);
}

.logo img {
  width: 34px;
  height: 34px;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.navbar a {
  color: #c6d2e2;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: var(--text);
}

.btn-contato {
  background: linear-gradient(135deg, #007bff, #00b4ff);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.35);
}

.btn-contato:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0062cc, #0099e6);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #f5f5f5;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  border-radius: 10px;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: block;
}

.wa-float-button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #25d366, #0aa852);
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2.4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.wa-float-button i {
  color: #ffffff;
  animation: waWiggle 2.8s ease-in-out infinite;
}

.wa-float-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

.wa-float-panel {
  width: min(320px, 86vw);
  background: #0f1117;
  color: #f5f5f5;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  padding: 18px;
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 72px;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: all 0.25s ease;
}

.wa-float-badge {
  position: absolute;
  right: -2px;
  bottom: 44px;
  width: 22px;
  height: 22px;
  background: #007bff;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.35);
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.wa-float.has-message .wa-float-badge {
  opacity: 1;
  transform: translateY(0);
}

.wa-float-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-float-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.wa-float-header strong {
  display: block;
  font-size: 1rem;
}

.wa-float-header span {
  color: var(--muted);
  font-size: 0.85rem;
}

.wa-float-close {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
}

.wa-float-form {
  display: grid;
  gap: 12px;
}

.wa-float-form label span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.wa-float-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f5;
}

.wa-float-submit {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(135deg, #25d366, #0aa852);
  color: #0b1a12;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(37, 211, 102, 0.35);
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.55);
  }
}

@keyframes waWiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-8deg);
  }
}

@media (max-width: 600px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
  }
}

.hero {
  position: relative;
  padding: 140px 0 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg .glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.35) 0%, transparent 70%);
  top: -90px;
  left: -90px;
}

.hero-bg .glow.alt {
  background: radial-gradient(circle, rgba(0, 180, 255, 0.35) 0%, transparent 70%);
  bottom: -140px;
  right: -90px;
  top: auto;
  left: auto;
}

.hero-bg .grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 23px, rgba(255, 255, 255, 0.04) 24px),
    linear-gradient(90deg, transparent 23px, rgba(255, 255, 255, 0.04) 24px);
  background-size: 24px 24px;
  opacity: 0.35;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 123, 255, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.btn.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.proof {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(22, 30, 46, 0.8);
  border: 1px solid var(--line);
}

.proof strong {
  display: block;
  font-size: 1.1rem;
}

.proof span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.totem-mock {
  width: min(360px, 88%);
  background: linear-gradient(160deg, #202a3e, #111827);
  border-radius: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.screen {
  background: #0f1626;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.screen-top {
  display: flex;
  gap: 6px;
}

.screen-top .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.screen-body h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.screen-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.badge {
  background: rgba(44, 212, 217, 0.16);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.screen-bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.totem-base {
  width: 120px;
  height: 20px;
  background: #0e1422;
  margin: 12px auto 0;
  border-radius: 999px;
}

.floating-card {
  background: rgba(16, 23, 37, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.floating-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.floating-card h4 {
  font-size: 1.1rem;
  margin: 6px 0 2px;
}

.metrics {
  padding: 80px 0;
  background: var(--bg-2);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.metric-card {
  padding: 24px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  min-height: 180px;
}

.metric-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.metric-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-title {
  margin-bottom: 32px;
}

.section-title h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0.04em;
}

.steps {
  padding: 90px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}

.step-number {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
}

.step-card h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.locations {
  padding: 90px 0;
  background: var(--bg-2);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.location-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}

.location-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.location-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.location-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text);
}

.location-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.plans {
  padding: 90px 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-card.highlight {
  border-color: rgba(44, 212, 217, 0.55);
  box-shadow: 0 18px 40px rgba(44, 212, 217, 0.15);
}

.plan-price {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.plan-card ul li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 8px;
}

.faq {
  padding: 90px 0;
  background: var(--bg-2);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--muted);
  margin-top: 12px;
}

.cta {
  padding: 90px 0 110px;
}

.cta-content {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 180, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 40px;
  text-align: center;
}

.cta-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--muted);
  margin-bottom: 20px;
}

/* ===== FOOTER MODERNO ===== */
.footer.footer-modern {
  background: #0a0f18;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 20px 30px;
  color: #d2d8e3;
}

.footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.footer-logo-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo-row img {
  width: 42px;
  height: 42px;
}

.footer-logo-row h2 {
  color: #ffffff;
  margin: 0;
  font-size: 1.8rem;
}

.footer-logo-row h2 span {
  color: var(--accent);
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

.footer-meta {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-meta span,
.footer-meta a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-meta .fa-location-dot {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.footer-column h3 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer-links-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  padding: 0;
  margin: 0;
}

.footer-links-list a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(0, 180, 255, 0.2);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #007bff, #00b4ff);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(0, 123, 255, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.footer-cta:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  color: #7f8aa0;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .footer-logo-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-inner {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .navbar {
    position: absolute;
    top: 70px;
    right: 16px;
    background: rgba(16, 23, 37, 0.95);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    display: none;
    width: min(280px, 80vw);
  }

  .navbar.open {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    gap: 14px;
  }

  .btn-contato {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .cta-content {
    padding: 32px 22px;
  }
}
