:root {
  --brand-orange: #ff8a00;
  --brand-orange-soft: #fff0df;
  --brand-purple: #602A97;
  --brand-purple-soft: #602A97;
  --brand-dark: #1d2233;
  --brand-text: #31374a;
  --brand-muted: #677087;
  --brand-bg: #fffaf5;
  --brand-surface: rgba(255, 255, 255, 0.92);
  --brand-border: rgba(95, 105, 130, 0.12);
  --brand-shadow: 0 20px 60px rgba(73, 31, 122, 0.12);
  --brand-radius: 28px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--brand-text);
  background: #fffaf6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1200;
  background: #fff;
  color: var(--brand-dark);
  padding: 10px 14px;
  border-radius: 12px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  padding: 18px 0;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


.navbar {
  padding: 0;
}

.brand-mark {
  display: inline-grid;
  text-decoration: none;
  line-height: 0.86;
}

.brand-mark__ip,
.brand-mark__link {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-mark__ip {
  color: var(--brand-orange);
}

.brand-mark__link {
  color: var(--brand-purple);
}

.brand-mark__tag {
  margin-top: 4px;
  color: var(--brand-muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  color: var(--brand-dark);
  font-weight: 500;
  padding: 10px 14px !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 16px;
  font-weight: 700;
  padding: 13px 22px;
}

.btn-brand {
  color: #0c0c0c;
  border: 1px solid transparent;
  background: var(--brand-orange);
  box-shadow: 0 14px 28px rgba(163, 83, 14, 0.2);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #111;
  background: #ff9b21;
  border-color: #ff9b21;
  transform: translateY(-1px);
}

.btn-outline-brand {
  color: var(--brand-dark);
  border: 1px solid rgba(67, 73, 94, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.btn-whatsapp {
  color: #1d6b3b;
  background: #fff;
  border: 1px solid rgba(31, 123, 68, 0.12);
  box-shadow: 0 10px 24px rgba(46, 135, 82, 0.12);
}

.btn-whatsapp:hover,
.btn-outline-brand:hover {
  color: var(--brand-dark);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: #f4e8ff;
  border-color: rgba(96, 42, 151, 0.3);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  color: #155b31;
  background: #e9fff2;
  border-color: rgba(31, 123, 68, 0.26);
}

.section-shell {
  position: relative;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-section--has-bg {
  min-height: 0;
  aspect-ratio: 430 / 480;
  background-color: #00195c;
}

@media (min-width: 768px) {
  .hero-section--has-bg {
    aspect-ratio: 768 / 480;
  }
}

@media (min-width: 992px) {
  .hero-section--has-bg {
    aspect-ratio: 1920 / 480;
  }
}

.hero-bg-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-slider-btn:hover,
.hero-slider-btn:focus {
  background: var(--brand-orange);
  border-color: transparent;
  color: #0c0c0c;
}

.hero-slider-btn--prev {
  left: 18px;
}

.hero-slider-btn--next {
  right: 18px;
}

.hero-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 6;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, width 0.25s ease;
}

.hero-slider-dot.is-active {
  width: 26px;
  background: var(--brand-orange);
}

@media (max-width: 767.98px) {
  .hero-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .hero-slider-btn--prev {
    left: 10px;
  }

  .hero-slider-btn--next {
    right: 10px;
  }

  .hero-slider-dots {
    bottom: 12px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0;
}

.hero-section--has-bg .hero-title,
.hero-section--has-bg .hero-lead,
.hero-section--has-bg .hero-copy {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-section--has-bg .section-kicker {
  color: rgba(255,255,255,0.9);
}

.hero-section--has-bg .hero-actions .btn-outline-brand {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.hero-section--has-bg .hero-actions .btn-outline-brand:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.12);
  color: var(--brand-purple);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker--center {
  margin-inline: auto;
}

.hero-title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.45rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--brand-dark);
}

.hero-title span {
  color: var(--brand-orange);
}

.hero-lead {
  max-width: 30rem;
  margin: 24px 0 12px;
  font-size: 1.6rem;
  line-height: 1.28;
  color: var(--brand-dark);
  font-weight: 500;
}

.hero-copy {
  max-width: 32rem;
  margin: 0;
  color: var(--brand-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 30px;
}

.signal {
  position: absolute;
  inset: 110px 56px 110px 56px;
  border-radius: 50%;
  border: 2px solid rgba(178, 130, 255, 0.16);
}

.signal--one {
  transform: rotate(-12deg);
}

.signal--two {
  inset: 155px 100px 150px 120px;
  border-color: rgba(255, 157, 84, 0.16);
}

.home-scene {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 430px;
  height: 320px;
  transform: translate(-42%, -42%);
}

.home-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(113, 114, 168, 0.15);
  box-shadow: 0 16px 40px rgba(70, 53, 120, 0.18);
}

.home-card--roof {
  width: 170px;
  height: 22px;
  right: 78px;
  top: 62px;
  transform: skewX(-32deg);
  background: #625a95;
}

.home-card--top {
  width: 164px;
  height: 112px;
  right: 44px;
  top: 82px;
  border-radius: 8px 8px 16px 16px;
}

.home-card--main {
  width: 300px;
  height: 178px;
  left: 40px;
  bottom: 24px;
  border-radius: 16px;
}

.window {
  position: absolute;
  background: rgba(255, 182, 104, 0.92);
  box-shadow: 0 0 16px rgba(255, 162, 74, 0.42);
}

.window--1 { width: 78px; height: 92px; left: 66px; bottom: 50px; }
.window--2 { width: 68px; height: 58px; left: 154px; bottom: 86px; }
.window--3 { width: 52px; height: 84px; right: 68px; top: 102px; }
.window--4 { width: 42px; height: 68px; right: 128px; top: 118px; }

.device-cluster {
  position: absolute;
  inset: auto 0 8px 0;
  height: 250px;
}

.device-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  border: 1px solid rgba(122, 114, 170, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--brand-shadow);
}

.device-card i {
  font-size: 2.2rem;
  color: var(--brand-purple);
}



.device-card--laptop {
  width: 132px;
  height: 92px;
  left: 238px;
  bottom: 42px;
}

.device-card--phone {
  width: 72px;
  height: 132px;
  left: 388px;
  bottom: 34px;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 34px;
  margin-top: 10px;
  padding: 26px;
  border: 1px solid var(--brand-border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(44, 38, 79, 0.08);
  backdrop-filter: blur(12px);
}

.metric-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.metric-box i {
  font-size: 1.5rem;
  color: var(--brand-purple);
}

.metric-box strong {
  display: block;
  color: var(--brand-dark);
}

.metric-box span {
  color: var(--brand-muted);
  font-size: 0.94rem;
}

.plans-section,
.ecosystem-section,
.coverage-section {
  padding: 52px 0;
}

.app-download-section {
  padding: 0 0 52px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-heading h2,
.coverage-panel h2,
.cta-banner h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.06;
  color: var(--brand-dark);
  font-weight: 800;
}

.section-heading p,
.coverage-panel p {
  color: var(--brand-muted);
}

.plan-card,
.service-card,
.coverage-panel,
.cta-banner {
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--brand-shadow);
}

.plan-card {
  position: relative;
  overflow: hidden;
}

.plan-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 36px 28px 30px;
  text-align: center;
}

.plan-card--featured {
  transform: translateY(-10px);
  background: rgba(248, 239, 255, 0.94);
}

.plan-card__flag {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.plan-card__speed,
.plan-card__label,
.plan-card__unit {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card__speed {
  color: var(--brand-orange);
  font-size: clamp(4rem, 10vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-top: 14px;
}

.plan-card__speed--featured {
  color: var(--brand-purple);
  margin-top: 30px;
}

.plan-card__label {
  font-size: 2rem;
  line-height: 1;
}

.plan-card__unit {
  font-size: 2.2rem;
  line-height: 1;
}

.plan-card__unit--small {
  font-size: 1.5rem;
}

.plan-card__icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 22px 0 18px;
  border-radius: 50%;
  font-size: 2rem;
}

.plan-card__icon--orange {
  color: var(--brand-orange);
  background: rgba(255, 138, 0, 0.1);
}

.plan-card__icon--purple {
  color: var(--brand-purple);
  background: rgba(141, 53, 255, 0.1);
}

.plan-card__description {
  max-width: 280px;
  color: var(--brand-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.plan-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin: 6px 0 22px;
}

.plan-card__price-prefix,
.plan-card__price-cents {
  color: var(--brand-dark);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.1;
}

.plan-card__price-value {
  color: var(--brand-orange);
  font-size: clamp(3.2rem, 7vw, 4.4rem);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.plan-card__price-value--featured {
  color: var(--brand-purple);
}

.plan-card__price-cycle {
  margin-bottom: 6px;
  color: var(--brand-muted);
}

.plan-card__servicos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 12px;
}

.plan-card__servico-icon {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.plan-card__servico-icon:hover {
  opacity: 1;
}

.plan-card__features {
  text-align: left;
  width: 100%;
  padding-left: 0;
  list-style: none;
  margin: 16px 0 0;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.92rem;
  color: var(--brand-text);
}

.plan-card__features li i {
  font-size: 1.1rem;
  color: var(--brand-purple);
  flex-shrink: 0;
}

.plan-card__button {
  min-width: 200px;
  border-radius: 14px;
  padding: 14px 20px;
}

.plan-card__button--outline {
  border: 1px solid rgba(255, 138, 0, 0.34);
  color: var(--brand-orange);
  background: #fff;
}

.plan-card__button--filled {
  border: 0;
  color: #fff;
  background: var(--brand-purple);
}

.service-card {
  height: 100%;
  padding: 28px 24px;
}

.service-card__icon {
  font-size: 2rem;
  color: var(--brand-purple);
}

.service-card h3 {
  margin: 18px 0 10px;
  color: var(--brand-dark);
  font-size: 1.35rem;
  font-weight: 700;
}

.service-card p {
  color: var(--brand-muted);
  line-height: 1.6;
}

.service-card__action {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  background: var(--brand-orange);
}

.coverage-panel {
  padding: 30px;
}

.coverage-map {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(244, 246, 251, 0.96);
}

.coverage-map__shape {
  position: absolute;
  inset: 30px 18% 30px 12%;
  border-radius: 48% 52% 57% 43% / 44% 38% 62% 56%;
  background: rgba(187, 162, 236, 0.28);
}

.coverage-map__pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: var(--brand-purple);
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px rgba(111, 45, 207, 0.25);
}

.coverage-map__pin::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}

.coverage-map__pin--a { left: 30%; top: 42%; }
.coverage-map__pin--b { left: 54%; top: 28%; }

.app-download-panel {
  padding: 34px;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--brand-shadow);
}

.app-download-panel h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.06;
  font-weight: 800;
}

.app-download-copy {
  margin: 14px 0 0;
  color: var(--brand-muted);
  line-height: 1.75;
}

.app-download-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.app-download-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-text);
}

.app-download-list i {
  color: var(--brand-purple);
}

.app-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.app-download-actions .btn {
  min-width: 188px;
}

.app-download-visual {
  padding: 14px;
  border: 1px solid var(--brand-border);
  border-radius: 30px;
  background: #fbf9ff;
}

.app-download-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.seo-copy-section {
  padding: 0 0 52px;
}

.seo-copy-panel {
  padding: 32px;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--brand-shadow);
}

.seo-copy-panel p {
  margin: 0 0 16px;
  color: var(--brand-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.seo-copy-panel p:last-child {
  margin-bottom: 0;
}

.inner-page-main {
  padding-top: 126px;
}

.page-hero-section,
.page-plans-section,
.page-benefits-section,
.page-faq-section,
.page-cta-section {
  padding: 34px 0 52px;
}

.page-hero-panel,
.page-strip,
.page-cta-panel,
.faq-contact-card,
.faq-list,
.benefit-box {
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--brand-shadow);
}

.page-hero-panel {
  padding: 34px;
}

.page-title {
  margin: 0 0 14px;
  color: var(--brand-purple);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
}

.page-copy {
  max-width: 34rem;
  color: var(--brand-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-hero-media {
  padding: 14px;
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--brand-shadow);
}

.about-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-visual {
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  background: #f7f3ff;
  border: 1px solid rgba(141, 53, 255, 0.12);
  overflow: hidden;
}

.page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-visual-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--brand-border);
  box-shadow: 0 14px 28px rgba(73, 31, 122, 0.08);
  color: var(--brand-dark);
  font-weight: 700;
}

.page-visual-chip i {
  color: var(--brand-purple);
}

.page-visual-chip--top {
  left: 24px;
  top: 24px;
}

.page-visual-chip--side {
  right: 24px;
  top: 94px;
}

.phone-stage {
  position: absolute;
  inset: 54px 36px 26px;
}

.phone-base,
.phone-handset,
.phone-screen,
.phone-keypad,
.phone-dock {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(95, 105, 130, 0.14);
  box-shadow: 0 18px 36px rgba(73, 31, 122, 0.12);
}

.phone-base {
  right: 20px;
  bottom: 20px;
  width: 260px;
  height: 180px;
  border-radius: 26px;
}

.phone-screen {
  left: 26px;
  top: 24px;
  width: 126px;
  height: 74px;
  border-radius: 18px;
  background: #f6f8fc;
}

.phone-screen::before,
.phone-screen::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 8px;
  border-radius: 999px;
  background: rgba(141, 53, 255, 0.16);
}

.phone-screen::before {
  top: 18px;
}

.phone-screen::after {
  top: 34px;
}

.phone-keypad {
  left: 26px;
  bottom: 24px;
  width: 126px;
  height: 56px;
  border-radius: 18px;
  background: #fff;
}

.phone-keypad::before {
  content: "";
  position: absolute;
  inset: 12px 14px;
  background-image: radial-gradient(circle, rgba(29, 34, 51, 0.72) 2px, transparent 3px);
  background-size: 28px 18px;
}

.phone-dock {
  right: 26px;
  bottom: 24px;
  width: 62px;
  height: 110px;
  border-radius: 20px;
  background: #fff;
}

.phone-handset {
  left: 58px;
  top: 44px;
  width: 148px;
  height: 210px;
  border-radius: 80px;
  transform: rotate(-24deg);
  background: #241f38;
}

.phone-handset::before,
.phone-handset::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 42px;
  border-radius: 999px;
  background: #0f1220;
}

.phone-handset::before {
  top: 16px;
}

.phone-handset::after {
  bottom: 16px;
}

.page-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.page-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
}

.page-strip-item + .page-strip-item {
  border-left: 1px solid rgba(95, 105, 130, 0.1);
}

.page-strip-item i {
  color: var(--brand-purple);
  font-size: 1.35rem;
}

.page-strip-item strong {
  display: block;
  color: var(--brand-dark);
  font-size: 0.98rem;
}

.page-strip-item span {
  color: var(--brand-muted);
  font-size: 0.92rem;
}

.page-section-head {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.page-section-head p {
  margin: 0 auto 8px;
}

.page-section-head h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 800;
}

.page-section-head .page-copy {
  margin: 14px auto 0;
}

.telephony-card {
  position: relative;
  height: 100%;
  padding: 28px 26px 30px;
  border: 1px solid var(--brand-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--brand-shadow);
  text-align: center;
}

.telephony-card--featured {
  border-color: rgba(141, 53, 255, 0.48);
}

.telephony-card__badge {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 999px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  z-index: 2;
}

.telephony-card__eyebrow {
  margin: 0;
  color: var(--brand-purple);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.telephony-card h3 {
  margin: 12px 0 10px;
  color: var(--brand-dark);
  font-size: 1.8rem;
  font-weight: 800;
}

.telephony-card__description {
  min-height: 52px;
  color: var(--brand-muted);
  line-height: 1.6;
}

.telephony-card__price {
  margin: 18px 0 4px;
  color: var(--brand-dark);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.telephony-card__price small {
  font-size: 1.1rem;
  font-weight: 700;
}

.telephony-card__cycle {
  margin: 0 0 18px;
  color: var(--brand-muted);
}

.telephony-card__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.telephony-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--brand-text);
}

.telephony-card__list i {
  color: var(--brand-purple);
}

.benefit-box {
  height: 100%;
  padding: 24px;
}

.benefit-box i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--brand-purple);
  background: rgba(141, 53, 255, 0.1);
  font-size: 1.45rem;
}

.benefit-box h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 1.28rem;
  font-weight: 700;
}

.benefit-box p {
  margin: 0;
  color: var(--brand-muted);
  line-height: 1.7;
}

.faq-list {
  padding: 10px 18px;
}

.faq-item {
  border-bottom: 1px solid rgba(95, 105, 130, 0.12);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  color: var(--brand-dark);
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: var(--brand-purple);
  transition: transform 0.2s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--brand-muted);
  line-height: 1.75;
}

.faq-contact-card {
  padding: 26px;
  height: 100%;
}

.faq-contact-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 22px;
  background: rgba(141, 53, 255, 0.12);
  color: var(--brand-purple);
  font-size: 2rem;
}

.faq-contact-card h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.faq-contact-card p,
.faq-contact-card a {
  display: block;
  max-width: 100%;
  color: var(--brand-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-contact-card .btn-whatsapp {
  margin: 18px 0 12px;
}

.faq-contact-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.6rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-simple-section {
  padding: 34px 0 52px;
}

.faq-simple-shell {
  padding: 34px;
  border: 1px solid var(--brand-border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--brand-shadow);
}

.faq-simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 30px;
  align-items: start;
}

.faq-simple-intro {
  margin-bottom: 26px;
}

.faq-simple-intro .section-kicker {
  margin-bottom: 10px;
}

.faq-simple-intro h1 {
  margin: 0 0 14px;
  color: var(--brand-purple);
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.02;
}

.faq-simple-intro p {
  max-width: 32rem;
  margin: 0;
  color: var(--brand-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.faq-simple-list {
  padding: 12px 20px;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(73, 31, 122, 0.06);
}

.faq-simple-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-simple-visual {
  position: relative;
  min-height: 250px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fcfbff 0%, #f5efff 100%);
  overflow: hidden;
}

.faq-bubble,
.faq-bubble-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 18px 36px rgba(73, 31, 122, 0.18);
}

.faq-bubble {
  left: 24px;
  top: 20px;
  width: 148px;
  height: 148px;
  background: var(--brand-purple);
  font-size: 5rem;
  font-weight: 800;
}

.faq-bubble::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -18px;
  width: 42px;
  height: 42px;
  border-radius: 0 0 22px 0;
  background: var(--brand-purple);
  transform: rotate(45deg);
}

.faq-bubble-card {
  right: 20px;
  top: 62px;
  width: 150px;
  height: 110px;
  background: var(--brand-orange);
  font-size: 2.7rem;
}

.faq-simple-card {
  padding: 28px;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(73, 31, 122, 0.08);
}

.faq-simple-card h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 1.45rem;
  font-weight: 800;
}

.faq-simple-card p {
  margin: 0;
  color: var(--brand-muted);
  line-height: 1.7;
}

.faq-simple-card .btn-whatsapp {
  margin: 18px 0 12px;
}

.faq-simple-card small {
  display: block;
  margin-bottom: 2px;
  color: var(--brand-muted);
  font-size: 0.92rem;
}

.faq-simple-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.9rem;
  line-height: 1.2;
}

.page-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
}

.page-cta-panel p {
  margin: 0;
  color: var(--brand-muted);
}

.page-cta-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.coverage-visual {
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  background: #f8f5ff;
  border: 1px solid rgba(141, 53, 255, 0.12);
  overflow: hidden;
}

.coverage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coverage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 53, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 53, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.coverage-shape {
  position: absolute;
  inset: 54px 18% 54px 16%;
  border-radius: 46% 54% 52% 48% / 44% 40% 60% 56%;
  background: rgba(141, 53, 255, 0.16);
  border: 1px solid rgba(141, 53, 255, 0.14);
}

.coverage-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--brand-purple);
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px rgba(111, 45, 207, 0.18);
}

.coverage-dot::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

.coverage-dot--a { left: 28%; top: 42%; }
.coverage-dot--b { left: 48%; top: 24%; }
.coverage-dot--c { left: 62%; top: 50%; }
.coverage-dot--d { left: 40%; top: 62%; }
.coverage-dot--e { left: 70%; top: 30%; }

.coverage-floating-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--brand-border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 30px rgba(73, 31, 122, 0.1);
}

.coverage-floating-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1rem;
}

.coverage-floating-card span {
  color: var(--brand-muted);
  font-size: 0.92rem;
}

.search-coverage-form {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.search-coverage-form .form-control {
  min-height: 54px;
  border-radius: 16px;
  border-color: rgba(95, 105, 130, 0.16);
  box-shadow: none;
}

.coverage-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.coverage-metric-card {
  padding: 24px 22px;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--brand-shadow);
}

.coverage-metric-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--brand-purple);
  background: rgba(141, 53, 255, 0.1);
  font-size: 1.25rem;
}

.coverage-metric-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.7rem;
  font-weight: 800;
}

.coverage-metric-card span {
  color: var(--brand-muted);
}

.coverage-list-panel {
  padding: 28px;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--brand-shadow);
}

.coverage-list-panel h2 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 2rem;
  font-weight: 800;
}

.coverage-list-panel p {
  color: var(--brand-muted);
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-text);
}

.coverage-list i {
  color: var(--brand-purple);
}

.notify-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--brand-shadow);
}

.notify-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.notify-panel p {
  margin: 0;
  color: var(--brand-muted);
}

.site-footer {
  padding: 48px 0 38px;
}

.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer-col p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.65);
  font-size: 0.92rem;
}

.footer-col p i {
  margin-right: 6px;
  color: var(--brand-orange);
}

.footer-col a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--brand-orange);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links li a:hover {
  color: var(--brand-orange);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: 1.2rem;
  transition: all .15s;
}

.footer-social a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-social a:hover {
  background: var(--brand-orange);
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 28px 34px;
  color: #fff;
  background: #602A97;
}

.cta-banner__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-weight: 700;
  opacity: 0.92;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.footer-meta {
  color: var(--brand-muted);
}

.footer-links a {
  color: var(--brand-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-orange);
}

@media (max-width: 1199.98px) {
  .hero-metrics {
    gap: 18px 24px;
  }

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

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

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

  .page-strip-item:nth-child(3),
  .page-strip-item:nth-child(4) {
    border-top: 1px solid rgba(95, 105, 130, 0.1);
  }

  .page-strip-item:nth-child(3) {
    border-left: 0;
  }

}

@media (max-width: 991.98px) {
  .site-header {
    padding: 12px 0;
  }

  .navbar-collapse {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--brand-shadow);
  }

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

  .home-scene {
    transform: translate(-50%, -42%) scale(0.86);
  }

  .device-cluster {
    transform: scale(0.88);
    transform-origin: center bottom;
  }

  .plan-card--featured {
    transform: none;
  }

  .page-hero-panel,
  .page-cta-panel {
    padding: 24px;
  }

  .app-download-panel {
    padding: 24px;
  }

  .app-download-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .faq-simple-shell {
    padding: 24px;
  }

  .faq-simple-grid {
    grid-template-columns: 1fr;
  }

  .faq-simple-intro p {
    max-width: none;
  }

  .about-hero-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .page-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .notify-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .hero-metrics {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }


  .page-strip {
    grid-template-columns: 1fr;
  }

  .faq-simple-shell {
    padding: 20px;
    border-radius: 24px;
  }

  .faq-simple-list,
  .faq-simple-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-simple-visual {
    min-height: 210px;
  }

  .faq-bubble {
    left: 16px;
    width: 124px;
    height: 124px;
    font-size: 4rem;
  }

  .faq-bubble-card {
    right: 12px;
    top: 70px;
    width: 128px;
    height: 92px;
    font-size: 2.2rem;
  }

  .app-download-actions {
    flex-direction: column;
  }

  .app-download-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .app-download-visual {
    padding: 10px;
    border-radius: 22px;
  }

  .about-hero-media {
    padding: 10px;
    border-radius: 22px;
  }

  .coverage-metrics,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .page-strip-item + .page-strip-item,
  .page-strip-item:nth-child(3),
  .page-strip-item:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(95, 105, 130, 0.1);
  }

  .page-visual {
    min-height: 300px;
  }

  .phone-stage {
    inset: 38px 20px 16px;
  }

  .phone-handset {
    left: 8px;
    top: 42px;
    transform: rotate(-18deg) scale(0.78);
  }

  .phone-base {
    right: 0;
    width: 210px;
    height: 150px;
  }

  .coverage-visual {
    min-height: 300px;
  }

  .coverage-shape {
    inset: 44px 14% 40px 12%;
  }

  .search-coverage-form {
    flex-direction: column;
  }

  .phone-screen,
  .phone-keypad {
    left: 18px;
    width: 100px;
  }

  .phone-dock {
    right: 18px;
    width: 54px;
    height: 92px;
  }

  .home-scene {
    top: 50%;
    transform: translate(-50%, -38%) scale(0.68);
  }

  .device-cluster {
    transform: scale(0.64);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .section-heading h2,
  .coverage-panel h2,
  .cta-banner h2 {
    font-size: 2rem;
  }

  .coverage-panel,
  .seo-copy-panel,
  .cta-banner {
    padding: 24px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}


