/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  --bg: #0153a6;
  --bg-deep: #013a6e;
  --cyan: #2fc8ef;
  --violet: #7a63fe;
  --accent-gradient: linear-gradient(120deg, var(--cyan), var(--violet));
  --white: #ffffff;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.74);
  --text-faint: rgba(255, 255, 255, 0.54);
  --card-bg: rgba(255, 255, 255, 0.07);
  --card-bg-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(255, 255, 255, 0.3);
  --radius: 12px;
  --shadow: 0 20px 40px rgba(0, 10, 30, 0.35);
  --shadow-glow: 0 10px 30px rgba(122, 99, 254, 0.35);
  --max-width: 1120px;
}

body {
  font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-alt { background: var(--bg-deep); }
.center { text-align: center; }

.eyebrow {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }

h1, h2, h3 { color: var(--text); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 16px; }
h3 { font-size: 20px; }

.section-lead {
  max-width: 620px;
  margin: 0 auto 48px auto;
  color: var(--text-soft);
  font-size: 17px;
}
.about-text .section-lead,
.contact-grid .section-lead { margin: 0 0 28px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(122, 99, 254, 0.45); }
.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--bg); border-color: var(--white); }
.btn-whatsapp {
  background: #25d366;
  color: #111111;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #1fb857; transform: translateY(-1px); }
.btn-block { display: block; text-align: center; width: 100%; }

/* ---------- Intro animation ---------- */
body.intro-lock { overflow: hidden; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 18% 105%, #0d82c1 0%, #073e73 55%, #021c3e 100%);
  opacity: 1;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.intro.intro-hide { opacity: 0; pointer-events: none; }

.intro-glow {
  position: absolute;
  width: min(90vw, 900px);
  height: min(90vw, 900px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 200, 239, 0.35) 0%, rgba(122, 99, 254, 0.16) 45%, rgba(122, 99, 254, 0) 70%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.intro-glow.show { opacity: 1; transform: scale(1); }

.intro-logo {
  position: relative;
  z-index: 2;
  width: min(85vw, 640px);
  opacity: 0;
  transform: scale(0.4) rotate(-6deg);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.25);
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.55));
}
.intro-logo.show { opacity: 1; transform: scale(1) rotate(0deg); }

.intro-skip {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.08);
  color: #eaf8ff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.intro-skip:hover { background: rgba(255, 255, 255, 0.18); }

@media (prefers-reduced-motion: reduce) {
  .intro-logo { transition: opacity 0.3s ease; transform: none; }
  .intro-glow { transition: opacity 0.3s ease; transform: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(1, 42, 90, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img { height: 76px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav ul { display: flex; gap: 26px; }
.site-nav a { font-weight: 600; color: var(--text-soft); font-size: 15px; }
.site-nav ul a:hover { color: var(--cyan); }
.nav-cta { white-space: nowrap; padding: 10px 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg);
  padding-top: 64px;
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 620px;
}
.hero-text { max-width: 560px; }
.hero-text .eyebrow { position: relative; padding-bottom: 14px; }
.hero-text .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.2vw, 46px);
  line-height: 1.15;
  margin: 18px 0 22px 0;
}
.hero h1 em {
  display: inline-block;
  margin-top: 4px;
  font-style: italic;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 400;
  font-size: 1.25em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text p {
  font-size: 16.5px;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.hero-text p.hero-tagline { color: var(--white); margin: 22px 0 26px 0; }
.hero-photo {
  position: relative;
  height: 100%;
  min-height: 480px;
  margin-right: min(calc((var(--max-width) - 100vw) / 2 - 24px), -24px);
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
}

.feature-strip {
  position: relative;
  z-index: 2;
  margin-top: -56px;
  margin-bottom: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(47, 200, 239, 0.15);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-item h3 { color: var(--bg); font-size: 15px; margin-bottom: 2px; }
.feature-item p { color: #4a5a68; font-size: 13.5px; line-height: 1.5; }

/* ---------- Plans ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.plan-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.plan-card.featured {
  background: var(--card-bg-strong);
  border-color: var(--cyan);
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-card h3 { font-size: 17px; color: var(--text-soft); margin-bottom: 14px; }
.plan-speed {
  font-size: 30px;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 6px;
}
.plan-speed span { font-size: 14px; font-weight: 700; color: var(--text-soft); }
.plan-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
}
.plan-price span { font-size: 15px; font-weight: 600; color: var(--text-soft); }
.plan-tax { font-size: 12.5px; color: var(--text-faint); margin: -14px 0 20px 0; }

/* ---------- Coverage ---------- */
.coverage-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.coverage-list li {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  font-weight: 600;
  color: var(--text-soft);
}
.coverage-note {
  margin-top: 32px;
  color: var(--text-soft);
}
.coverage-note a { color: var(--cyan); font-weight: 700; }

/* ---------- Resources ---------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.resource-card {
  display: block;
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.resource-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.resource-card h3 { color: var(--cyan); margin-bottom: 8px; }
.resource-card p { color: var(--text-soft); font-size: 15px; }
.resource-card.is-disabled {
  position: relative;
  opacity: 0.6;
  cursor: not-allowed;
}
.resource-card.is-disabled:hover { transform: none; border-color: var(--border); }
.resource-card.is-disabled h3 { color: var(--text-soft); }
.resource-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Docs / Normativas ---------- */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.doc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.doc-card:hover { transform: translateY(-3px); border-color: var(--cyan); }
.doc-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-title { font-weight: 600; color: var(--white); font-size: 14.5px; }
.doc-note { margin-top: 20px; color: var(--text-faint); font-size: 13.5px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.contact-list { margin: 20px 0 28px 0; }
.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}
.contact-list a { color: var(--cyan); font-weight: 600; }
.contact-map {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.contact-map a { color: var(--cyan); font-weight: 700; font-size: 17px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  color: var(--text-soft);
  padding: 40px 0;
  text-align: center;
}
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 24px;
}
.footer-logos img { height: 66px; width: auto; }
.footer-logos a:nth-child(3) img { height: 104px; }
.footer-logos a { transition: opacity 0.15s ease; }
.footer-logos a:hover { opacity: 0.75; }
.site-footer p { font-size: 14px; color: var(--text-faint); }
.visit-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.visit-counter.is-hidden { display: none; }
.visit-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.odometer {
  display: flex;
  gap: 3px;
  background: linear-gradient(180deg, #3a3f44, #17191b);
  padding: 5px;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.odometer-digit {
  position: relative;
  width: 19px;
  height: 27px;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(180deg, #585d62 0%, #303336 48%, #232527 52%, #1b1d1f 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.odometer-digit span {
  position: relative;
  z-index: 1;
  display: block;
  color: #f5f7f8;
  font-weight: 800;
  font-size: 15px;
  line-height: 27px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-family: "Segoe UI", Arial, sans-serif;
}
.odometer-digit::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}
.odometer-digit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.6);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-list { grid-template-columns: repeat(3, 1fr); }
  .resources-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; text-align: center; min-height: 0; padding-top: 40px; gap: 32px; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-text .eyebrow::after { left: 50%; transform: translateX(-50%); }
  .hero-photo { min-height: 320px; margin: 0; order: -1; }
  .hero-photo img { border-radius: var(--radius); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(1, 42, 90, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    gap: 18px;
  }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 16px; }
  .nav-cta { text-align: center; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .coverage-list { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .feature-strip { grid-template-columns: 1fr; padding: 24px; }
  .feature-item { align-items: center; text-align: center; }
}
