:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: #fff7ed;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eff6ff;
  --bg: #fff;
  --soft: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --shadow: 0 18px 44px rgba(15, 23, 42, .08);
  --radius: 22px;
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, Arial, sans-serif; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}
.header-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand-main img { height: 50px; width: auto; }
.main-nav { display: flex; gap: 22px; align-items: center; font-weight: 600; color: #334155; }
.main-nav a:hover { color: var(--orange); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 14px; padding: 13px 18px; font-weight: 800; border: none; cursor: pointer; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-portal { background: #0f172a; color: #fff; }
.btn-pay { background: var(--orange); color: #fff; box-shadow: 0 14px 30px rgba(249,115,22,.28); }
.btn-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; box-shadow: 0 14px 34px rgba(249,115,22,.26); }
.btn-orange-outline { border: 1px solid rgba(249,115,22,.22); color: var(--orange-dark); background: #fff; }
.btn-blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; box-shadow: 0 14px 34px rgba(37,99,235,.22); }
.btn-blue-outline { background: #fff; color: var(--blue-dark); border: 1px solid rgba(37,99,235,.18); }
.hero {
  padding: 76px 0 48px;
  background:
    radial-gradient(circle at 20% 15%, rgba(249,115,22,.17), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(234,88,12,.13), transparent 26%),
    linear-gradient(180deg, #fff, #fff7ed 90%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--orange-dark); border: 1px solid #fed7aa;
  border-radius: 999px; padding: 9px 14px; font-size: .87rem; font-weight: 800; margin-bottom: 18px;
}
.hero h1 { margin: 0 0 16px; font-size: clamp(2.35rem, 4vw, 4.7rem); line-height: 1.02; letter-spacing: -.03em; }
.hero p { margin: 0; font-size: 1.07rem; line-height: 1.75; color: #475569; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.stat-box { background: rgba(255,255,255,.9); border: 1px solid #fed7aa; border-radius: 18px; padding: 15px; box-shadow: var(--shadow); }
.stat-box strong { display: block; font-size: 1.35rem; }
.hero-side { display: grid; gap: 16px; }
.hero-slider-box, .hero-map-preview {
  background: #fff; border: 1px solid #ffedd5; border-radius: 28px; padding: 18px; box-shadow: var(--shadow);
}
.hero-slider-box h3, .hero-map-preview h3 { margin: 0 0 14px; font-size: 1.1rem; }
.slide-mini { display: grid; gap: 10px; }
.slide-card {
  border: 1px solid #ffedd5; border-radius: 18px; overflow: hidden; background: var(--orange-soft);
}
.slide-card img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.slide-card .caption { padding: 12px 14px; font-weight: 600; }
.section { padding: 76px 0; }
.section-head { max-width: 780px; margin: 0 auto 28px; text-align: center; }
.section-head h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 2.6vw, 2.9rem); letter-spacing: -.02em; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.75; }
.service-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 18px; }
.pill { background: #fff; border: 1px solid #fed7aa; color: var(--orange-dark); border-radius: 999px; padding: 10px 16px; font-weight: 700; }
.plan-carousel-wrap { position: relative; }
.plan-carousel {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 14px; scroll-behavior: smooth;
}
.plan-carousel::-webkit-scrollbar { height: 10px; }
.plan-carousel::-webkit-scrollbar-thumb { background: #fdba74; border-radius: 999px; }
.plan-card {
  min-width: min(330px, 85vw); scroll-snap-align: start; background: #fff; border-radius: 26px; padding: 24px;
  border: 2px solid #fed7aa; box-shadow: var(--shadow); display: grid; gap: 14px;
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.plan-top { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.plan-badge { background: var(--orange-soft); color: var(--orange-dark); border: 1px solid #fdba74; padding: 8px 12px; border-radius: 999px; font-size: .85rem; font-weight: 800; }
.plan-card h3 { margin: 0; font-size: 1.3rem; }
.speed-boxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.speed-box { background: #fff7ed; border-radius: 16px; padding: 14px; border: 1px solid #ffedd5; }
.speed-box span { display: block; color: var(--muted); font-size: .85rem; }
.plan-price { font-size: 2rem; font-weight: 800; color: var(--orange-dark); }
.plan-note { color: var(--muted); line-height: 1.65; }
.feature-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.feature-list li { display: flex; align-items: start; gap: 10px; color: #334155; }
.feature-list li::before {
  content: '✓'; width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%; background: #fff7ed; border: 1px solid #fdba74; color: var(--orange-dark);
  display: grid; place-items: center; font-size: .85rem; font-weight: 800;
}
.plan-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.coverage-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: start; }
.coverage-card, .coverage-list-card, .saas-card, .logos-card, .lead-card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 24px; box-shadow: var(--shadow);
}
.coverage-card { border-color: #ffedd5; }
#coverage-map { width: 100%; height: 520px; border-radius: 22px; overflow: hidden; }
.legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.legend-item { display: inline-flex; gap: 8px; align-items: center; color: #475569; font-size: .92rem; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; }
.coverage-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; max-height: 520px; overflow: auto; }
.coverage-list li { border: 1px solid #e2e8f0; border-radius: 18px; padding: 14px; }
.status-tag { display: inline-flex; align-items: center; border-radius: 999px; padding: 7px 11px; font-size: .8rem; font-weight: 800; }
.internet-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { background: #fff; border: 1px solid #ffedd5; border-radius: 22px; padding: 22px; box-shadow: var(--shadow); }
.benefit-card h3 { margin: 0 0 8px; }
.benefit-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.saas-section { background: linear-gradient(180deg, #eff6ff, #fff); }
.saas-card { border-color: #dbeafe; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.saas-logo { height: 70px; width: auto; }
.saas-card p { color: var(--muted); line-height: 1.8; }
.saas-bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.saas-bullets li { display: flex; gap: 10px; color: #334155; }
.saas-bullets li::before { content: '◆'; color: var(--blue); }
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.logo-item { border: 1px solid var(--line); border-radius: 20px; padding: 20px; min-height: 110px; display: grid; place-items: center; background: #fff; }
.logo-item img { max-height: 48px; width: auto; object-fit: contain; }
.lead-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; }
.lead-card h3 { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 700; }
input, select, textarea {
  width: 100%; border: 1px solid #cbd5e1; border-radius: 14px; padding: 14px 15px; font: inherit; color: var(--text); background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: #fb923c; box-shadow: 0 0 0 4px rgba(249,115,22,.08); }
.small-note { color: var(--muted); font-size: .92rem; line-height: 1.6; }
.notice-strip { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 18px; padding: 14px 16px; color: #9a3412; font-weight: 600; }
.site-footer { background: #0f172a; color: #cbd5e1; padding: 34px 0; margin-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 24px; align-items: start; }
.footer-grid h4 { color: #fff; margin: 0 0 12px; }
.footer-grid p, .footer-grid li, .footer-grid a { color: #cbd5e1; line-height: 1.75; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-logo { height: 48px; width: auto; margin-bottom: 10px; }
.apr-logo { height: 62px; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff; font-weight: 800; border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(37,211,102,.35);
}
.page-hero { padding: 68px 0 40px; }
.page-hero.blue {
  background: radial-gradient(circle at 20% 10%, rgba(37,99,235,.14), transparent 28%), linear-gradient(180deg, #eff6ff, #fff);
}
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-box { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: var(--shadow); }
.success-wrap { min-height: 70vh; display: grid; place-items: center; padding: 28px; background: #fff7ed; }
.success-card { max-width: 720px; background: #fff; border: 1px solid #fed7aa; border-radius: 28px; padding: 36px; box-shadow: var(--shadow); text-align: center; }
.admin-shell { padding: 28px 0 48px; }
.table-wrap { overflow: auto; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 1100px; }
th, td { padding: 14px 16px; border-bottom: 1px solid #e2e8f0; text-align: left; vertical-align: top; }
th { background: #f8fafc; font-size: .9rem; }
@media (max-width: 1100px) {
  .hero-grid, .coverage-wrap, .saas-card, .lead-grid, .footer-grid { grid-template-columns: 1fr; }
  .internet-benefits, .logo-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
}
@media (max-width: 760px) {
  .header-wrap { min-height: 78px; }
  .brand-main img { height: 42px; }
  .header-actions .btn { padding: 12px 14px; font-size: .92rem; }
  .hero, .section { padding: 58px 0; }
  .hero-stats, .internet-benefits, .logo-grid, .form-grid, .info-grid { grid-template-columns: 1fr; }
  .plan-card { min-width: 88vw; }
  #coverage-map { height: 400px; }
  .saas-card { padding: 20px; }
}

.hero-home {
  background-size: cover;
  background-position: center center;
}
.hero-home .hero-grid { align-items: stretch; }
.hero-slider-box { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14); border-radius: 28px; padding: 22px; backdrop-filter: blur(6px); }
.hero-slider-box h3 { color: #fff; margin-top: 0; margin-bottom: 14px; }
.slide-mini { display: grid; gap: 14px; }
.slide-card { overflow: hidden; border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.slide-card img { width: 100%; height: 180px; object-fit: cover; display:block; }
.slide-card .caption { padding: 14px 16px; font-weight: 700; color: #0f172a; }
.placeholder-card { min-height: 120px; display:grid; align-items:center; }
.logo-item { min-height: 130px; }
.logo-item img { max-height: 64px; max-width: 100%; object-fit: contain; }
@media (max-width: 760px) {
  .desktop-only { display: none !important; }
}


:root {
  --navy-900:#071120;
  --navy-800:#0b172a;
  --navy-700:#10203a;
  --line-soft:rgba(255,255,255,.08);
  --shadow-premium:0 18px 40px rgba(2,6,23,.22);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(7,17,32,.96), rgba(11,23,42,.93));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 8px 30px rgba(2,6,23,.18);
}
.header-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 0%, rgba(249,115,22,.10), transparent 28%), radial-gradient(circle at 85% 0%, rgba(37,99,235,.10), transparent 26%);
}
.header-wrap {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand-main img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.15));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  position: relative;
  color: rgba(248,250,252,.88);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 8px 0;
  transition: all .22s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transition: width .22s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav .nav-apr::after { background: var(--blue); }
.header-actions { display:flex; align-items:center; gap:10px; }
.btn-portal {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.btn-portal:hover { background: rgba(255,255,255,.10); }
.btn-pay {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(249,115,22,.30);
}
.btn-pay:hover { box-shadow: 0 14px 28px rgba(249,115,22,.36); }
.hero-home {
  padding-top: 86px;
  background-size: cover;
  background-position: center center;
}
.hero-home .hero-grid { align-items: center; }
.hero-slider-box {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 14px;
  backdrop-filter: blur(8px);
  min-height: 410px;
  display: flex;
}
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 382px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease-in-out, transform 4.2s ease-in-out;
  transform: scale(1);
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.04);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,17,32,.10), rgba(7,17,32,.20));
}
.placeholder-card {
  background: linear-gradient(135deg, rgba(249,115,22,.28), rgba(37,99,235,.20));
}
@media (max-width: 1100px) {
  .main-nav { display: none; }
}
@media (max-width: 760px) {
  .header-wrap { min-height: 76px; }
  .brand-main img { height: 38px; }
  .header-actions .btn { padding: 12px 14px; font-size: .92rem; }
  .desktop-only, .hero-slider-box, .hero-slider { display: none !important; }
}

.hero-home h1 {
  color: var(--hero-title-color);
  text-shadow: 0 12px 30px rgba(2, 6, 23, .28);
}
.hero-home .hero-copy,
.hero-home p {
  color: var(--hero-subtitle-color);
  text-shadow: 0 8px 24px rgba(2, 6, 23, .22);
}
.hero-home .eyebrow {
  background: rgba(255,255,255,.95);
}
.footer-grid-3 {
  grid-template-columns: 1.2fr .8fr .8fr;
}
.section-head h2 {
  text-wrap: balance;
}
.internet-benefits {
  grid-template-columns: repeat(4, 1fr);
}
.admin-nav {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 18px 0 22px;
}
.admin-nav a {
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:12px;
  background:#fff;
  border:1px solid #e2e8f0;
  font-weight:700;
}
.admin-form-shell {
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
}
.admin-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow: var(--shadow);
}
.color-preview {
  width:100%;
  min-height:220px;
  border-radius:22px;
  padding:26px;
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
}
.color-preview::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(7,17,32,.86), rgba(7,17,32,.58));
}
.color-preview > * { position:relative; z-index:1; }
.color-preview .eyebrow { margin-bottom:14px; }
.color-preview h3 { margin:0 0 10px; font-size:2rem; }
.color-preview p { margin:0; max-width:540px; line-height:1.7; }
.helper-list { margin:0; padding-left:18px; color:var(--muted); line-height:1.8; }
@media (max-width:1100px){
  .admin-form-shell,
  .footer-grid-3,
  .internet-benefits { grid-template-columns:1fr 1fr; }
}
@media (max-width:760px){
  .admin-form-shell,
  .footer-grid-3,
  .internet-benefits { grid-template-columns:1fr; }
}
