:root {
  --bg: #050b16;
  --surface: #020617;
  --surface-alt: #020817;
  --surface-strong: #000814;
  --primary: #2774ff;
  --primary-dark: #1f5bcc;
  --accent: #facc6b;
  --accent-muted: #c6a667;
  --text: #f8fafc;
  --muted: #cbd5f5;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: #fff;
}

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

main {
  flex: 1;
}

section {
  padding-bottom: 4.5rem;
}

.wrapper {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 11, 22, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.logo strong {
  font-size: 0.95rem;
  display: block;
}

.logo span {
  font-size: 0.7rem;
  color: #94a3b8;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: #cbd5f5;
  align-items: center;
}

.nav-link-button {
  background: none;
  border: none;
  color: #cbd5f5;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.2s ease;
}

.nav-link-button:hover {
  color: #fff;
}

.cta-button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
  cursor: pointer;
}

.cta-button {
  padding: 0.55rem 1.75rem;
  font-size: 0.82rem;
  background: var(--primary);
  border: none;
  color: #fff;
  box-shadow: 0 10px 25px rgba(39, 116, 255, 0.35);
}

.cta-button:hover {
  background: var(--primary-dark);
}

.link-button {
  padding: 0.9rem 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #d4dcff;
}

.link-button:hover {
  border-color: var(--primary);
  color: #fff;
}

.hero {
  display: grid;
  gap: 2rem;
  padding-top: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  border: 1px solid rgba(198, 166, 103, 0.4);
  background: rgba(198, 166, 103, 0.08);
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.2;
  margin: 1rem 0;
}

.hero p {
  font-size: 0.95rem;
  color: #cbd5f5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-actions .link-button {
  border-radius: 999px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: #cbd5f5;
  margin-top: 0.75rem;
  padding-top: 0;
}

.hero-checks span {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 107, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--accent);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-media figure {
  position: relative;
  width: min(320px, 90%);
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #040b1d, #0b1733);
  box-shadow: var(--shadow);
}

.hero-media img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-media .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 65%);
}

.hero-card {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  font-size: 0.7rem;
}

.hero-card img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.trust-bar {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #d2dcff;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item span {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 107, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--accent);
}

.problems-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.warning-card {
  background: rgba(127, 29, 29, 0.25);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 24px;
  padding: 0.75rem 1rem;
  color: #fecaca;
  font-size: 0.9rem;
}

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: #d1dbff;
}

.bullet-list li {
  display: flex;
  gap: 0.75rem;
}

.bullet-list li > span:first-child {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(248, 117, 117, 0.9);
  text-align: center;
  font-weight: 600;
  color: #050b16;
  font-size: 0.7rem;
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bullet-list li > span:last-child {
  flex: 1;
}

.steps-grid {
  display: grid;
  gap: 1rem;
}

.step-card,
.faq-item,
.service-card,
.info-card,
.video-frame,
.surface-card {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: 0 20px 30px rgba(2, 6, 23, 0.35);
}

.about-card {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 30px rgba(2, 6, 23, 0.35);
}

.step-card h3,
.service-card h3,
.info-card h2,
.faq-item strong {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.step-card p,
.service-card p,
.info-card p,
.faq-item p {
  font-size: 0.85rem;
  color: #c7d2fe;
}

.stats-grid {
  display: grid;
  gap: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 1.25rem;
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
}

.stat span {
  font-size: 0.85rem;
  color: #cbd5f5;
}

.about-grid,
.services-grid,
.info-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-card ul,
.footer-column ul,
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.final-cta {
  border-radius: 32px;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--primary), #0f172a);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.final-cta p {
  color: rgba(248, 250, 252, 0.9);
}

.final-cta .cta-button {
  background: #fff;
  color: #0f172a;
  box-shadow: none;
}

.final-cta .cta-button:hover {
  background: #e2e8f0;
}

.final-cta small {
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.8);
}

footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
  font-size: 0.78rem;
  color: #cbd5f5;
}

.footer-column h4 {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  color: #f1f5f9;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  font-size: 0.72rem;
  color: #94a3b8;
  text-align: center;
}

.video-frame {
  padding: 0;
  background: rgba(0, 0, 0, 0.3);
}

.video-frame video {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.video-frame[style*="max-width: 50%"] {
  max-width: 50% !important;
}

@media (max-width: 768px) {
  .video-frame[style*="max-width: 50%"] {
    max-width: 100% !important;
  }
}

.chat-toggle {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 15px 35px rgba(39, 116, 255, 0.5);
  z-index: 50;
  cursor: pointer;
}

.chat-toggle:hover {
  background: var(--primary-dark);
}

.chat-panel {
  position: fixed;
  right: 1.5rem;
  bottom: 6.5rem;
  width: min(320px, calc(100% - 2rem));
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem;
  box-shadow: 0 30px 50px rgba(2, 6, 23, 0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.chat-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-button {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
  border-radius: 16px;
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.whatsapp-button:hover {
  background: #16a34a;
}

.badge-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.page-header {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 0.95rem;
  color: #cbd5f5;
}

.page-content {
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    flex-direction: row;
  }

  .problems-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .about-grid,
  .info-grid {
    grid-template-columns: 1.2fr 1fr;
  }

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

  .final-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .final-cta div:nth-child(2) {
    min-width: 240px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wrapper {
    padding: 0 1.25rem;
  }

  header {
    position: static;
  }

  .hero-card {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
  }

  .final-cta {
    padding: 1.75rem;
  }
}
