/* ARACAJU WEB — CSS LIMPO E CONSOLIDADO */
:root {
  --bg-dark: #1b0721;
  --bg-darker: #100314;
  --bg-card: #2a0d35;
  --brand-purple: #5a1763;
  --brand-purple-dark: #2b0b35;
  --brand-orange: #ff5500;
  --brand-orange-light: #ff7a33;
  --brand-orange-dark: #cf4300;
  --text-main: #fff;
  --text-muted: #e7d9ef;
  --text-soft: #bfa8cd;
  --border: rgba(255, 255, 255, .10);
  --border-orange: rgba(255, 85, 0, .28);
  --shadow: 0 20px 50px rgba(8, 2, 12, .55);
  --radius: 24px;
  --transition: .3s cubic-bezier(.2, .8, .2, 1);
  --container: 1200px
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px
}

body {
  min-width: 320px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background: radial-gradient(circle at 8% 4%, rgba(255, 85, 0, .10), transparent 27%), radial-gradient(circle at 92% 20%, rgba(150, 67, 220, .18), transparent 30%), linear-gradient(180deg, var(--bg-dark), var(--bg-darker))
}

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

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

button,
input {
  font: inherit
}

button {
  cursor: pointer
}

ul {
  list-style: none
}

:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0)
}

.bg-effects,
.glow-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden
}

.bg-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5
}

.bg-aurora-1 {
  width: 430px;
  height: 430px;
  top: -150px;
  left: -150px;
  background: rgba(255, 85, 0, .25);
  animation: floatA 15s ease-in-out infinite
}

.bg-aurora-2 {
  width: 520px;
  height: 520px;
  top: 20%;
  right: -220px;
  background: rgba(139, 54, 205, .28);
  animation: floatB 18s ease-in-out infinite
}

.bg-aurora-3 {
  width: 400px;
  height: 400px;
  bottom: -180px;
  left: 28%;
  background: rgba(255, 122, 51, .16);
  animation: floatA 17s ease-in-out infinite
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: linear-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .8) 1px, transparent 1px);
  background-size: 48px 48px
}

@keyframes floatA {
  50% {
    transform: translate(80px, 55px) scale(1.07)
  }
}

@keyframes floatB {
  50% {
    transform: translate(-70px, 80px) scale(.93)
  }
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 86px;
  padding: 12px clamp(18px, 5vw, 8%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(20, 5, 26, .86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px)
}

/* =====================================================
   LOGO — TAMANHO MAIOR SEM AUMENTAR O NAV
===================================================== */

.site-logo {
  display: flex;
  align-items: center;

  width: 150px;
  height: 58px;
  margin-top: 5px;

  flex-shrink: 0;

  overflow: visible;
}

.site-logo img {
  display: block;

  width: 175px;
  max-width: none;

  height: auto;

  object-fit: contain;

  transform: scale(1.08);
  transform-origin: left center;
}

/* Mantém a altura do cabeçalho controlada */

.site-header,
header {
  min-height: 76px;
}

.site-nav {
  margin: auto
}

.site-nav ul {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  align-items: center
}

.site-nav a {
  position: relative;
  color: var(--text-muted);
  font-size: .92rem;
  font-weight: 750
}

.site-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--brand-orange);
  transition: width var(--transition)
}

.site-nav a:hover {
  color: #fff
}

.site-nav a:hover:after {
  width: 100%
}

.header-actions {
  display: flex;
  gap: 10px
}

.btn-speedtest,
.btn-client {
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 850;
  white-space: nowrap
}

.btn-speedtest {
  color: var(--brand-orange);
  border: 1px solid var(--brand-orange);
  background: rgba(255, 85, 0, .08)
}

.btn-speedtest:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-2px)
}

.btn-client {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25)
}

.btn-client:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 85, 0, .22)
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-orange);
  border-radius: 13px;
  background: var(--bg-card);
  color: #fff;
  align-items: center;
  justify-content: center
}

/* HERO */
.hero {
  padding: clamp(55px, 7vw, 90px) clamp(18px, 8vw, 8%) 75px;
  position: relative;
  overflow: hidden
}

.hero-content {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(30px, 6vw, 80px)
}

.hero-copy {
  max-width: 650px
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--border-orange);
  border-radius: 999px;
  color: var(--brand-orange-light);
  background: rgba(255, 85, 0, .10);
  font-size: .82rem;
  font-weight: 850
}

.hero h1 {
  margin: 18px 0;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -.045em
}

.hero h1 span {
  display: block;
  color: var(--brand-orange);
  text-shadow: 0 0 28px rgba(255, 85, 0, .25)
}

.hero-copy>p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 28px
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 13px
}

.cta-main,
.cta-secondary,
.btn-plan {
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900
}

.cta-main {
  color: #fff;
  background: linear-gradient(100deg, var(--brand-orange), var(--brand-orange-light));
  box-shadow: 0 15px 30px rgba(255, 85, 0, .25)
}

.cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(255, 85, 0, .36)
}

.cta-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05)
}

.cta-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .1)
}

.hero-gamer-showcase {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center
}

.gamer-glow-effect {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 85, 0, .35), rgba(130, 47, 185, .20) 55%, transparent 72%);
  filter: blur(35px)
}

.hero-image,
.mascote-gamer-img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .55));
  animation: floatMascot 4.5s ease-in-out infinite
}

@keyframes floatMascot {
  50% {
    transform: translateY(-13px) rotate(1deg)
  }
}

/* TITULOS E PLANOS */
.plans-container,
.movel-section,
.benefits-section,
.tv-experience-section,
.social-engagement {
  padding: clamp(65px, 8vw, 105px) clamp(18px, 8vw, 8%)
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12
}

.section-subtitle {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 1.05rem
}

.grid-plans {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(70, 22, 86, .96), rgba(28, 8, 36, .96));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .4);
  transition: var(--transition)
}

.card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
  opacity: .65
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-orange);
  box-shadow: var(--shadow)
}

.card.featured {
  border-color: rgba(255, 85, 0, .48)
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--brand-orange);
  font-size: .67rem;
  font-weight: 900;
  text-transform: uppercase
}

.card-header {
  text-align: center
}

.card-header h3 {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 8px
}

.velocity {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.06em
}

.velocity span {
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--brand-orange)
}

.combo-badge {
  width: max-content;
  max-width: 100%;
  margin: 15px auto 0;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 85, 0, .12);
  border: 1px solid rgba(255, 85, 0, .22);
  color: #ffc2a1;
  font-size: .72rem;
  font-weight: 800;
  text-align: center
}

.price {
  margin: 21px 0 20px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 950
}

.price span {
  font-size: .9rem;
  color: var(--text-soft);
  font-weight: 600
}

.features-list {
  display: grid;
  gap: 12px;
  margin-bottom: 27px
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: .92rem
}

.features-list i {
  width: 18px;
  flex: 0 0 18px;
  color: var(--brand-orange);
  margin-top: 2px
}

.btn-plan {
  width: 100%;
  margin-top: auto;
  color: #fff;
  background: linear-gradient(100deg, var(--brand-purple), #7a2684);
  border: 1px solid var(--border)
}

.btn-plan:hover {
  transform: translateY(-3px);
  background: linear-gradient(100deg, var(--brand-orange-dark), var(--brand-orange))
}

.cta-highlight {
  background: linear-gradient(100deg, var(--brand-orange), var(--brand-orange-light))
}

/* MOVEL */
.movel-section {
  background: linear-gradient(180deg, transparent, rgba(97, 27, 119, .16), transparent)
}

.movel-content {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 55px
}

.movel-text h2 {
  margin: 14px 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12
}

.movel-text>p {
  color: var(--text-soft);
  font-size: 1.05rem
}

.movel-cards-mini {
  display: grid;
  gap: 15px;
  margin-top: 27px
}

.mini-feature {
  display: flex;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035)
}

.mini-feature>i {
  width: 28px;
  flex: 0 0 28px;
  color: var(--brand-orange)
}

.mini-feature h3 {
  font-size: 1rem;
  margin-bottom: 5px
}

.mini-feature p {
  color: var(--text-soft);
  font-size: .9rem
}

.icones-sociais {
  display: flex;
  gap: 8px;
  margin: 9px 0
}

.icones-sociais img {
  width: 26px;
  height: 26px
}

.movel-highlight-card {
  padding: 30px;
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 20%, rgba(255, 85, 0, .16), transparent 45%), linear-gradient(160deg, rgba(78, 24, 96, .96), rgba(24, 7, 31, .96));
  box-shadow: var(--shadow);
  text-align: center
}

.mascote-wrapper {
  display: grid;
  place-items: center;
  min-height: 330px
}

.mascote-img-movel {
  width: min(100%, 390px);
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .5));
  animation: floatMascot 5s ease-in-out infinite
}

/* BENEFICIOS */
.grid-benefits {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.benefit-card {
  padding: 30px 23px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, .035);
  transition: var(--transition)
}

.benefit-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-orange);
  background: rgba(255, 255, 255, .055)
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--brand-orange);
  background: rgba(255, 85, 0, .11);
  border: 1px solid rgba(255, 85, 0, .20);
  transition: var(--transition)
}

.benefit-card:hover .benefit-icon {
  color: #fff;
  background: var(--brand-orange);
  transform: rotate(5deg)
}

.benefit-card h3 {
  font-size: 1.18rem;
  margin-bottom: 9px
}

.benefit-card p {
  color: var(--text-soft);
  font-size: .93rem
}

/* TV */
.tv-experience-section {
  padding-top: 30px
}

.tv-experience-container {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 48px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(76, 23, 91, .72), rgba(20, 5, 27, .94));
  box-shadow: var(--shadow)
}

.tv-experience-image {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border-orange)
}

.tv-experience-image img {
  width: 100%;
  transition: transform .55s
}

.tv-experience-container:hover .tv-experience-image img {
  transform: scale(1.03)
}

.tv-experience-content h2 {
  margin: 13px 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1
}

.tv-experience-content h2 span {
  color: var(--brand-orange)
}

.tv-experience-content>p {
  color: var(--text-soft);
  font-size: 1.03rem
}

.tv-benefits-list {
  display: grid;
  gap: 13px;
  margin: 25px 0
}

.tv-benefits-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text-muted);
  font-weight: 650
}

.tv-benefits-list i {
  width: 20px;
  color: var(--brand-orange)
}

/* COBERTURA */
.coverage-container {
  max-width: var(--container);
  margin: 35px auto 80px;
  padding: clamp(40px, 6vw, 70px) clamp(18px, 6vw, 65px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(52, 15, 65, .96), rgba(17, 4, 23, .98));
  box-shadow: var(--shadow)
}

.coverage-container .section-title {
  margin-bottom: 24px
}

.mascote-cobertura-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 20px;
  max-width: 620px
}

.mascote-img-wifi {
  width: 180px;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 15px 22px rgba(0, 0, 0, .45))
}

.mascote-balao {
  max-width: 310px;
  padding: 15px 18px;
  border: 1px solid var(--border-orange);
  border-radius: 18px 18px 18px 4px;
  background: rgba(255, 85, 0, .10);
  color: #ffd8c6;
  font-weight: 750
}

.coverage-search-box {
  max-width: 650px;
  margin: auto;
  display: flex;
  gap: 11px;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04)
}

#cep-input {
  min-width: 0;
  flex: 1;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: #fff;
  outline: 0
}

#cep-input::placeholder {
  color: #9f8ca9
}

#btn-consultar {
  padding: 13px 21px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--brand-orange);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

#btn-consultar:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px)
}

.feedback-message {
  min-height: 26px;
  margin-top: 13px;
  text-align: center;
  font-weight: 750
}

.feedback-success {
  color: #55e6a5
}

.feedback-error {
  color: #ff8a8a
}

/* REDES E APP */
.social-engagement {
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(91, 24, 110, .18), rgba(0, 0, 0, .12))
}

.social-content {
  max-width: 760px;
  margin: 0 auto 42px
}

.social-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12
}

.social-content>p {
  margin-top: 12px;
  color: var(--text-soft)
}

.social-buttons-grid {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px
}

.social-btn {
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 850
}

.social-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.08)
}

.instagram {
  background: linear-gradient(45deg, #f09433, #dc2743 50%, #9b2dbd)
}

.whatsapp-community {
  background: #25d366
}

.suporte {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
  border: 1px solid var(--border)
}

.app-download-area {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 190px 190px 1fr;
  align-items: center;
  gap: 40px;
  padding: 28px;
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(58, 17, 71, .96), rgba(16, 4, 22, .98));
  box-shadow: var(--shadow);
  text-align: left
}

.app-illustration {
  padding: 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border)
}

.app-illustration img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 13px
}

.app-tagline {
  color: var(--brand-orange);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em
}

.app-download-title {
  margin: 8px 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1
}

.app-download-description {
  color: var(--text-soft)
}

.app-buttons-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px
}

.btn-app-store {
  min-height: 80px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0, 0, 0, .22);
  color: #fff
}

.btn-app-store:hover {
  transform: translateY(-3px);
  border-color: var(--brand-orange)
}

.btn-app-store i {
  width: 27px
}

.btn-app-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left
}

.btn-app-store small {
  font-size: .66rem;
  color: var(--text-soft);
  text-transform: uppercase
}

.btn-app-store strong {
  font-size: .98rem
}

/* FOOTER */
.site-footer {
  padding: 58px clamp(18px, 8vw, 8%) 24px;
  background: var(--bg-darker);
  border-top: 1px solid var(--border)
}

.footer-inner {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 35px;
  align-items: center;
  color: var(--text-soft)
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 15px
}

.anatel-logo {
  width: 105px;
  height: 105px;
  object-fit: contain
}

.footer-company img {
  width: 165px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 7px
}

.footer-company p {
  font-size: .85rem
}

.footer-address {
  font-style: normal;
  padding: 0 20px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border)
}

.footer-address p {
  margin: 5px 0
}

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

.footer-copyright {
  text-align: right;
  font-size: .88rem
}

.footer-copyright p+p {
  margin-top: 8px;
  color: var(--brand-orange)
}

/* RESPONSIVO */
@media(max-width:1100px) {
  .site-header {
    flex-wrap: wrap
  }

  .site-nav {
    order: 4;
    width: 100%
  }

  .site-nav ul {
    justify-content: center
  }

  .hero-content,
  .movel-content {
    grid-template-columns: 1fr;
    gap: 35px
  }

  .hero-copy {
    margin: auto;
    text-align: center
  }

  .hero-ctas {
    justify-content: center
  }

  .hero-gamer-showcase {
    min-height: 360px;
    order: -1
  }

  .grid-plans {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    padding: 10px 3px 20px
  }

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

  .tv-experience-container {
    grid-template-columns: 1fr
  }

  .app-download-area {
    grid-template-columns: 160px 160px 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr
  }

  .footer-copyright {
    grid-column: 1/-1;
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid var(--border)
  }
}

@media(max-width:768px) {
  .site-header {
    min-height: 76px;
    padding: 9px 5%;
    gap: 10px
  }

  .logo img {
    width: 140px;
    max-height: 54px
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto
  }

  .site-nav {
    display: none;
    order: 4;
    width: 100%
  }

  .site-nav.is-open {
    display: block
  }

  .site-nav ul {
    padding: 13px 0 5px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px
  }

  .site-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .045)
  }

  .site-nav a:after {
    display: none
  }

  .header-actions {
    display: none;
    order: 5;
    width: 100%;
    flex-direction: column;
    align-items: stretch
  }

  .site-header:has(.site-nav.is-open) .header-actions {
    display: flex
  }

  .btn-speedtest,
  .btn-client {
    width: 100%
  }

  .hero {
    padding-top: 42px
  }

  .hero-gamer-showcase {
    min-height: 290px
  }

  .hero-image {
    max-height: 390px
  }

  .plans-container,
  .movel-section,
  .benefits-section,
  .tv-experience-section,
  .social-engagement {
    padding-left: 5%;
    padding-right: 5%
  }

  .grid-benefits {
    grid-template-columns: 1fr
  }

  .movel-highlight-card {
    max-width: 520px;
    margin: auto
  }

  .mascote-wrapper {
    min-height: 260px
  }

  .tv-experience-container {
    padding: 16px
  }

  .coverage-container {
    margin: 25px 5% 65px;
    padding: 38px 18px
  }

  .coverage-search-box {
    flex-direction: column
  }

  #cep-input {
    text-align: center
  }

  #btn-consultar {
    justify-content: center
  }

  .app-download-area {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    text-align: center
  }

  .app-download-content {
    grid-column: 1/-1
  }

  .app-buttons-group {
    justify-content: center
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .footer-brand-row {
    justify-content: center
  }

  .footer-address {
    border: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0
  }

  .footer-copyright {
    grid-column: auto;
    text-align: center
  }

  .grid-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: visible;
    padding: 0;
  }

  .card {
    width: 100%;
    min-width: 0;
  }
}

@media(max-width:520px) {
  .logo img {
    width: 118px
  }

  .menu-toggle {
    width: 43px;
    height: 43px
  }

  .hero-ctas {
    flex-direction: column
  }

  .cta-main,
  .cta-secondary {
    width: 100%
  }

  .hero-gamer-showcase {
    min-height: 240px
  }

  .hero-image {
    max-height: 320px
  }

  .section-title {
    margin-bottom: 32px
  }

  .card {
    padding: 29px 21px
  }

  .mascote-cobertura-box {
    flex-direction: column
  }

  .mascote-balao {
    text-align: center;
    border-radius: 18px
  }

  .social-btn {
    width: 100%;
    justify-content: center
  }

  .app-download-area {
    grid-template-columns: 1fr;
    padding: 18px
  }

  .app-illustration {
    max-width: 220px;
    margin: auto
  }

  .app-download-content {
    grid-column: auto
  }

  .app-buttons-group {
    flex-direction: column
  }

  .btn-app-store {
    justify-content: center
  }

  .footer-brand-row {
    flex-direction: column
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}

.feedback-message {
  min-height: 28px;
  max-width: 650px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
  line-height: 1.6;
  font-weight: 600;
}

.feedback-success {
  color: #b9ffe0;
  background: rgba(16, 185, 129, .12);
  border: 1px solid rgba(16, 185, 129, .35);
}

.feedback-error {
  color: #ffd0d0;
  background: rgba(239, 68, 68, .12);
  border: 1px solid rgba(239, 68, 68, .35);
}

.feedback-pending {
  color: #ffd4b8;
  background: rgba(255, 85, 0, .12);
  border: 1px solid rgba(255, 85, 0, .38);
}

.feedback-loading {
  color: #ffffff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}

#btn-consultar:disabled {
  opacity: .7;
  cursor: wait;
}