*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overscroll-behavior-x: none;
}

img,
picture,
svg,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
}
:root {
  --color-brand: #ff4400;
  --color-brand-strong: #ff5f1a;
  --color-brand-soft: rgba(255, 68, 0, 0.14);
  --gradient-brand: linear-gradient(135deg, #ff7a2a 0%, #ff4400 60%, #e03000 100%);
  --color-dark: #050505;
  --color-dark-surface: #0d0c0b;
  --color-dark-card: rgba(25, 18, 14, 0.84);
  --color-dark-border: rgba(255, 141, 62, 0.22);
  --color-light: #f3f3f6;
  --color-light-surface: #f9f9fb;
  --color-light-border: rgba(0, 0, 0, 0.08);
  --color-white: #ffffff;
  --color-text: #211c19;
  --color-text-muted: rgba(255, 255, 255, 0.72);
  --color-text-soft: rgba(33, 28, 25, 0.68);
  --color-divider: rgba(255, 146, 70, 0.28);
  --font-ui: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --shadow-soft: 0 30px 80px rgba(14, 8, 5, 0.18);
  --shadow-light: 0 24px 60px rgba(213, 160, 122, 0.2);
  --container-width: min(1180px, calc(100vw - 40px));
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --header-height: 92px;
}
body {
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255, 68, 0, 0.12), transparent 30%),
    radial-gradient(circle at 100% 20%, rgba(255, 123, 54, 0.08), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 60% 10%, rgba(255, 85, 0, 0.06), transparent 20%),
    radial-gradient(circle at 18% 52%, rgba(255, 85, 0, 0.05), transparent 26%);
  pointer-events: none;
  z-index: -1;
}

#root {
  isolation: isolate;
}

main {
  overflow: clip;
}

.page-shell {
  position: relative;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.section-shell {
  position: relative;
  scroll-margin-top: 120px;
}

.section-shell .container {
  position: relative;
  z-index: 1;
}

.section-shell--dark {
  padding: 48px 0;
}

.section-shell--light {
  padding: 44px 0;
}

.dark-stage {
  position: relative;
  background:
    radial-gradient(circle at 78% 2%, rgba(255, 106, 27, 0.18), transparent 18%),
    linear-gradient(180deg, #050505 0%, #0d0908 30%, #090708 65%, #050505 100%);
}

.dark-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 106, 27, 0.08), transparent 18%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  opacity: 0.7;
  pointer-events: none;
}

.light-stage {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding-top: 48px;
  border-radius: 44px 44px 0 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(160, 160, 180, 0.06), transparent 20%),
    linear-gradient(180deg, #f9f9fb 0%, #f2f2f6 100%);
  color: var(--color-text);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.18);
}

.light-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 30%);
  pointer-events: none;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.section-heading--center {
  text-align: center;
  justify-items: center;
}

.section-heading h2,
.hero-section h1,
.benefits-section h2,
.app-section h2,
.coverage-section h2,
.commercial-section h2,
.client-area-section h2,
.faq-section h2,
.contact-section h2 {
  font-family: var(--font-ui);
  font-size: clamp(2.3rem, 5vw, 4.55rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-section h1 span,
.section-heading h2 span,
.benefits-section h2 span,
.app-section h2 span,
.coverage-section h2 span,
.commercial-section h2 span,
.client-area-section h2 span,
.faq-section h2 span {
  color: var(--color-brand);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
}

.section-heading p,
.hero-section p,
.benefits-section p,
.app-section p,
.coverage-section p,
.commercial-section p,
.client-area-section p,
.faq-section p,
.contact-section p {
  max-width: 620px;
  font-size: 1.05rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .light-stage {
    border-radius: 28px 28px 0 0;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--gradient-brand);
  color: var(--color-white);
}

.button--secondary {
  border-color: rgba(255, 142, 63, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
}

.light-stage .button--secondary {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 96, 24, 0.2);
}

.light-stage .button--primary {
  box-shadow: var(--shadow-light);
}

.button__icon {
  width: 1.05rem;
  height: 1.05rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 136, 54, 0.32);
  color: #ffb171;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 93, 22, 0.06);
}

.section-badge--light {
  color: var(--color-brand);
  background: rgba(255, 81, 9, 0.06);
  border-color: rgba(255, 81, 9, 0.18);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  padding: 0 20px;
  transition:
    background 300ms ease-out,
    box-shadow 300ms ease-out,
    border-color 300ms ease-out,
    transform 340ms cubic-bezier(0.32, 0.72, 0, 1),
    opacity 340ms ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header--menu-open {
  transform: translateY(18px);
  opacity: 0.15;
  pointer-events: none;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  width: min(120px, 28vw);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header__link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 0.25rem 0;
  transition: color 150ms ease-out;
}

.header__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-brand);
  border-radius: 1px;
  transition: width 300ms ease-out;
}

.header__link:hover,
.header__link.active {
  color: var(--color-white);
}

.header__link:hover::after,
.header__link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: filter 150ms ease-out, transform 150ms ease-out;
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
}

.header__cta:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.header__cta svg {
  width: 16px;
  height: 16px;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 300ms ease-out;
  transform-origin: center;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 28;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 320ms ease;
}

.mobile-menu-overlay.active {
  background: rgba(0, 0, 0, 0.55);
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 52px);
  max-width: 360px;
  background: rgba(14, 14, 16, 0.88);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 31;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 340ms cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* ============================================================
   CHAT FAB — botão fixo para abrir o assistente
   ============================================================ */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 201;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 68, 0, 0.4);
  transition: bottom 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.22s ease;
}

.cookie-active .chat-fab {
  bottom: 110px;
}

.chat-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(255, 68, 0, 0.55);
}

.chat-fab .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-fab .icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.chat-fab--open .icon svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   CHAT MODAL — fullscreen, no card, dark glass
   ============================================================ */
body.modal-open {
  overflow: hidden;
}

.chat-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-modal--visible {
  opacity: 1;
  pointer-events: auto;
}

.chat-window {
  display: block;
}

.chat-modal--redirect .chat-window {
  display: none;
}

.chat-redirect {
  display: none;
}

.chat-modal--redirect .chat-redirect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  animation: redirectIn 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.chat-window {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}

/* ── Header ── */
.chat-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 4px 24px 4px;
}

.chat-header__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255, 68, 0, 0.4);
}

.chat-header__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.chat-header__name {
  font-family: var(--font-ui);
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
}

.chat-header__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
}

.chat-header__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* ── Body ── */
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
  min-height: 200px;
  max-height: 420px;
  background: transparent;
}

.chat-body::-webkit-scrollbar { width: 3px; }
.chat-body::-webkit-scrollbar-track { background: transparent; }
.chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* ── Messages ── */
.chat-msg {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 88%;
}

.chat-msg--bot { align-self: flex-start; }
.chat-msg--user { align-self: flex-end; }

/* Bot message entrance */
.chat-msg--bot.chat-msg--new .chat-bubble {
  animation: botBubbleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes botBubbleIn {
  from { opacity: 0; transform: translateY(14px) translateX(-6px); }
  to   { opacity: 1; transform: translateY(0) translateX(0); }
}

/* User message entrance */
.chat-msg--user.chat-msg--new .chat-bubble {
  animation: userBubbleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes userBubbleIn {
  from { opacity: 0; transform: translateY(14px) translateX(6px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
}

/* Button stagger entrance */
.chat-msg--new .chat-btns .chat-btn {
  animation: chatBtnIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.chat-msg--new .chat-btns .chat-btn:nth-child(1) { animation-delay: 0.06s; }
.chat-msg--new .chat-btns .chat-btn:nth-child(2) { animation-delay: 0.13s; }
.chat-msg--new .chat-btns .chat-btn:nth-child(3) { animation-delay: 0.20s; }
.chat-msg--new .chat-btns .chat-btn:nth-child(4) { animation-delay: 0.27s; }

@keyframes chatBtnIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-bubble {
  padding: 11px 15px;
  border-radius: 18px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.chat-msg--user .chat-bubble {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 4px 18px rgba(255, 68, 0, 0.3);
}

.chat-msg--bot .chat-bubble {
  border-radius: 18px 18px 18px 4px;
}

/* ── Buttons ── */
.chat-btns {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  max-width: 270px;
}

.chat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.chat-btn:hover {
  background: rgba(255, 68, 0, 0.16);
  border-color: rgba(255, 100, 0, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 68, 0, 0.15);
}

.chat-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.chat-btn__icon .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Back button styling */
.chat-btn[data-chat-action^="back"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.chat-btn[data-chat-action^="back"]:hover {
  background: rgba(255, 68, 0, 0.12);
  border-color: rgba(255, 100, 0, 0.35);
}

.chat-btn__icon .icon svg,
.chat-btn__icon svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.75);
  fill: none;
}

/* ── Typing indicator ── */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px 18px 18px 4px;
  width: fit-content;
  animation: typingIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes typingIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: chatDot 1.4s infinite ease-in-out both;
}

.chat-typing span:nth-child(1) { animation-delay: 0s; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chatDot {
  0%, 80%, 100% { transform: scale(0.5); opacity: 0.25; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* ── Redirect / Loading screen ── */
.chat-modal--redirect {
  animation: modalFadeIn 0.4s ease;
}

@keyframes redirectIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.chat-redirect__spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.08);
  border-top-color: #ff5500;
  animation: chatSpin 0.85s linear infinite;
  box-shadow: 0 0 24px rgba(255, 68, 0, 0.2);
}

@keyframes chatSpin {
  to { transform: rotate(360deg); }
}

.chat-redirect__text {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  animation: redirectTextPulse 1.8s ease-in-out infinite;
}

@keyframes redirectTextPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

.chat-redirect__sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: -12px;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 0 32px;
}

/* ── Top bar ── */
.mobile-menu__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.mobile-menu__topbar-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.mobile-menu__close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  transition: background 160ms, color 160ms;
  flex-shrink: 0;
}

.mobile-menu__close:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.mobile-menu__close .icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

/* ── Groups ── */
.mobile-menu__group {
  padding: 14px 0 4px;
  margin: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu__group:last-of-type {
  border-bottom: none;
}

.mobile-menu__group-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  padding: 0 8px 6px;
}

/* ── Items ── */
.mobile-menu__item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 11px 10px;
  border-radius: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: background 160ms;
  margin-bottom: 1px;
}

.mobile-menu__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.38);
  flex-shrink: 0;
  transition: color 180ms;
}

.mobile-menu__item-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.mobile-menu__item--wa .mobile-menu__item-icon svg {
  fill: currentColor;
  stroke: none;
}

.mobile-menu__item--ig .mobile-menu__item-icon svg {
  stroke-width: 1.5;
}

.mobile-menu__item:hover .mobile-menu__item-icon {
  color: #ff6820;
}

.mobile-menu__item--wa:hover .mobile-menu__item-icon {
  color: #25d366;
}

.mobile-menu__item--ig:hover .mobile-menu__item-icon {
  color: #e1306c;
}

.mobile-menu__item-label {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
  transition: color 160ms;
}

.mobile-menu__item:hover .mobile-menu__item-label {
  color: rgba(255, 255, 255, 0.96);
}

.mobile-menu__item-chevron {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.18);
  transition: color 160ms, transform 160ms;
  flex-shrink: 0;
}

.mobile-menu__item-chevron svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  transform: rotate(-90deg);
}

.mobile-menu__item:hover .mobile-menu__item-chevron {
  color: rgba(255, 255, 255, 0.4);
  transform: translateX(2px);
}

/* ── Footer CTA ── */
.mobile-menu__footer {
  padding: 20px 16px 32px;
  margin-top: auto;
}

.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: opacity 150ms, transform 150ms;
  box-shadow: 0 4px 20px rgba(255, 80, 0, 0.3);
}

.mobile-menu__cta:active {
  transform: scale(0.98);
  opacity: 0.92;
}

.mobile-menu__cta .icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.region-select {
  position: relative;
}

.region-select__trigger,
.region-select__item {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.region-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: min(320px, 100%);
  min-height: 62px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 132, 43, 0.18);
  color: var(--color-white);
}

.region-select__trigger span {
  display: grid;
  gap: 4px;
  text-align: left;
}

.region-select__trigger strong,
.region-select__item span {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
}

.region-select__trigger small,
.region-select__item small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.region-select__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 132, 43, 0.18);
  background: rgba(12, 10, 9, 0.95);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
}

.region-select__item {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 14px;
  background: transparent;
  color: var(--color-white);
  text-align: left;
}

.region-select__item.is-selected,
.region-select__item:hover {
  background: rgba(255, 85, 13, 0.08);
}

.ticker-divider {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 144, 66, 0.16);
  border-bottom: 1px solid rgba(255, 144, 66, 0.16);
  background: rgba(10, 10, 10, 0.9);
}

.ticker-divider__track {
  display: flex;
  width: max-content;
  animation: ticker-slide 22s linear infinite;
}

.ticker-divider__item {
  position: relative;
  padding: 0 22px;
  color: #ffa768;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: 0.04em;
}

.ticker-divider__item::after {
  content: '•';
  position: absolute;
  right: -4px;
  top: 0;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.accordion-item {
  border: 1.5px solid rgba(85, 56, 34, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(194, 157, 124, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
  animation: faqItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) var(--faq-delay, 0ms) both;
}

@keyframes faqItemIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.accordion-item:hover {
  box-shadow: 0 8px 32px rgba(194, 157, 124, 0.16);
  transform: translateY(-1px);
}

.accordion-item.is-open {
  border-color: rgba(255, 81, 9, 0.28);
  box-shadow: 0 8px 32px rgba(255, 81, 9, 0.08), inset 3px 0 0 var(--brand);
  transform: none;
}

.accordion-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.18s ease;
}

.accordion-item__trigger:hover {
  background: rgba(255, 81, 9, 0.03);
}

.accordion-item__num {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  opacity: 0.7;
  min-width: 22px;
}

.accordion-item__question {
  flex: 1;
  font-family: var(--font-ui);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  line-height: 1.35;
}

.accordion-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(85, 56, 34, 0.06);
  transition: background 0.2s, transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.accordion-item.is-open .accordion-item__icon {
  background: rgba(255, 81, 9, 0.1);
  transform: rotate(0deg);
}

.accordion-item__icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-text-soft);
  transition: color 0.2s;
}

.accordion-item.is-open .accordion-item__icon svg {
  color: var(--brand);
}

.accordion-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item__body {
  overflow: hidden;
}

.accordion-item__body p {
  padding: 0 22px 0 58px;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 200ms ease 0ms, transform 200ms ease 0ms;
}

.accordion-item.is-open .accordion-item__content {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-item__body p {
  padding-bottom: 22px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease 160ms, transform 220ms ease 160ms;
}

.site-footer {
  background: #fff;
}

.site-footer__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 36px 0 28px;
}

.site-footer__social {
  display: flex;
  gap: 14px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  transition: transform 0.2s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 68, 0, 0.3);
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-social-icon:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 68, 0, 0.45);
}

.site-footer__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 2px;
}

.site-footer__nav a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.72);
  padding: 4px 10px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.site-footer__nav a:hover {
  color: var(--brand);
  background: rgba(255, 81, 9, 0.05);
}

.site-footer__nav a + a::before {
  content: '·';
  margin-right: 2px;
  color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.site-footer__copy {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding-bottom: 8px;
}

@media (max-width: 1080px) {
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .site-footer__body {
    padding: 28px 0 20px;
  }
}

@media (max-width: 640px) {
  .button {
    width: 100%;
  }

  .region-select__trigger {
    min-width: 100%;
  }
}
.hero-section {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-height) + 6px);
  padding-bottom: 54px;
  overflow: hidden;
}

.hero-section .container {
  position: relative;
  z-index: 4;
}

.hero-section__background,
.hero-section::before,
.hero-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-section__background {
  z-index: 0;
}

/* picture element must fill the absolute background div */
.hero-section__background picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-section__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.02);
}

.hero-section::before {
  content: '';
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 115, 37, 0.18), transparent 20%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.82) 28%, rgba(5, 5, 5, 0.58) 52%, rgba(5, 5, 5, 0.26) 76%, rgba(5, 5, 5, 0.14) 100%);
  z-index: 1;
}

.hero-section::after {
  content: '';
  inset: auto 0 -1px 0;
  height: 260px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.36) 38%, #050505 100%);
  z-index: 2;
}

.hero-section__grid,
.benefits-section__grid,
.app-section__grid,
.coverage-section__grid,
.client-area-section__grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-section__grid {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.98fr);
  min-height: 560px;
  align-items: start;
}

.hero-section__content {
  display: grid;
  gap: 26px;
  align-content: start;
  padding-top: 4px;
}

.hero-section p {
  color: var(--color-text-muted);
  max-width: 560px;
}

.hero-section__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-section__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1140px;
  margin: -156px auto 0;
  position: relative;
  z-index: 6;
}

.hero-highlight {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 18px 24px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.14),
    0 16px 40px rgba(0, 0, 0, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.025),
    inset 0 -1px 0 rgba(255, 255, 255, 0.01);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease;
}

/* reflexo de superfície */
.hero-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 25%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* linha de aresta superior */
.hero-highlight::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 999px;
  pointer-events: none;
}

.hero-highlight:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.22),
    0 24px 52px rgba(0, 0, 0, 0.18),
    inset 0 2px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.hero-highlight__icon,
.plans-benefit__icon,
.coverage-stats article .icon,
.client-action-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 93, 22, 0.08);
  color: var(--color-brand);
  border: 1px solid rgba(255, 146, 70, 0.16);
}

.contact-channels .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 93, 22, 0.08);
  color: var(--color-brand);
  border: 1px solid rgba(255, 146, 70, 0.14);
}

.contact-channels .icon svg {
  width: 22px;
  height: 22px;
}

.hero-highlight__icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 0 0.5px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-highlight__icon svg {
  stroke: url(#iconGradient);
}

.hero-highlight__icon svg {
  width: 28px;
  height: 28px;
}

.hero-highlight__body {
  display: grid;
  gap: 4px;
}

.hero-highlight h3,
.plans-benefit h3,
.app-section__feature-list h3,
.client-action-card h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
}

.hero-highlight p,
.plans-benefit p,
.app-section__feature-list p,
.client-action-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.66);
}

.hero-section__visual {
  position: relative;
  min-height: 1px;
}

.hero-artwork {
  position: relative;
  width: 100%;
  height: auto;
}

.plans-section {
  position: relative;
  isolation: isolate;
  z-index: 1;
  margin-top: -132px;
  padding-top: 168px;
  padding-bottom: 46px;
  background: #050505;
}


.plans-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0) 0%,
    rgba(5, 5, 5, 0.55) 10%,
    rgba(5, 5, 5, 0.88) 18%,
    #050505 25%,
    #050505 100%
  );
  z-index: 0;
}

.plans-section .container {
  position: relative;
  z-index: 1;
}

.plans-section .section-heading {
  position: relative;
  margin-bottom: 30px;
}

.plans-section .section-heading h2 span {
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 700;
  color: var(--color-brand);
}

.plans-section__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.plans-section__region-note {
  display: grid;
  gap: 6px;
  max-width: 420px;
}

.plans-section__region-note strong {
  color: #ffb87f;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plans-section__region-note span {
  color: rgba(255, 255, 255, 0.66);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 141, 63, 0.18);
  background:
    linear-gradient(180deg, rgba(37, 28, 22, 0.9) 0%, rgba(17, 13, 11, 0.94) 100%);
  position: relative;
}

.plan-card--featured {
  transform: translateY(-8px);
}

.plan-card__tag {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 93, 22, 0.14);
  color: #ffbc8d;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.plan-card__speed strong {
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(3.6rem, 5vw, 5rem);
  line-height: 0.9;
  color: var(--color-brand);
  letter-spacing: -0.06em;
}

.plan-card__speed span {
  display: block;
  margin-top: 8px;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.plan-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255, 141, 63, 0.18);
  display: grid;
  place-items: center;
  color: var(--color-brand);
  background: rgba(255, 92, 22, 0.06);
}

.plan-card__audience {
  min-height: 50px;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
}

.plan-card__features {
  display: grid;
  gap: 11px;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.plan-card__features .icon {
  color: var(--color-brand);
}

.plan-card__note {
  min-height: 48px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.plan-card__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.plan-card__price strong {
  font-family: var(--font-ui);
  font-size: 2rem;
  line-height: 1;
}

.plan-card__price span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  padding-bottom: 4px;
}

.plans-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 141, 63, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.plans-benefit {
  display: flex;
  gap: 14px;
}

.benefits-section {
  padding: 40px 0 86px;
}

.benefits-section__grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
  gap: 40px;
}

.benefits-section__copy {
  display: grid;
  gap: 12px;
}

.benefits-section__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========== CANAIS TV CARD ========== */
.canais-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(8, 8, 12, 0.60);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.22),
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  padding: 0 0 38px;
  position: relative;
  z-index: 2;
  max-width: 420px;
  align-self: flex-end;
}

.canais-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.32) 30%,
    rgba(255, 255, 255, 0.32) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 3;
}

.canais-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(8, 8, 12, 0) 0%, rgba(8, 8, 12, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}

.canais-card__frame,
.canais-card__text {
  position: relative;
  z-index: 2;
}

.canais-card__frame {
  margin: 10px 10px 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.canais-card__frame img {
  width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
}

.canais-card__text {
  padding: 18px 22px 22px;
  font-family: var(--font-ui);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.canais-card__text em {
  font-style: normal;
  color: var(--color-brand);
  font-weight: 800;
  font-size: 2rem;
}

.canais-card__text span {
  color: var(--color-brand);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
}

.benefits-section p {
  color: rgba(255, 255, 255, 0.7);
}

.benefits-section__points {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.benefits-section__points article {
  display: grid;
  gap: 7px;
  min-width: 90px;
  padding: 11px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.benefits-section__points span {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
}

.benefits-section__points .icon {
  width: 22px;
  height: 22px;
}

/* ========== INFINITE APPS MARQUEE ========== */
.apps-marquee {
  position: relative;
  min-height: 220px;
  border-radius: 36px;
  overflow: hidden;
  margin-top: -64px;
  padding: 42px 0 72px;
  background: rgba(7, 6, 6, 0);
  display: flex;
  align-items: center;
  z-index: 3;
}

.apps-marquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  pointer-events: none;
  z-index: 4;
}

.apps-marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  margin-top: -28px;
  animation: appsScroll 32s linear infinite;
  will-change: transform;
}

.apps-marquee:hover .apps-marquee__track {
  animation-play-state: paused;
}

@keyframes appsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.apps-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}
.apps-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 6, 6, 0.95) 0%, rgba(7, 6, 6, 0) 100%);
}
.apps-marquee__fade--right {
  right: 0;
  background: linear-gradient(-90deg, rgba(7, 6, 6, 0.95) 0%, rgba(7, 6, 6, 0) 100%);
}

.apps-marquee__caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 240, 226, 0.55);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}

/* ========== ROUND GLASS APP CARD ========== */
.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 132px;
  flex: 0 0 auto;
}

.app-icon-card {
  flex: 0 0 auto;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  /* liquid glass */
  background: transparent;
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.app-icon-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: none;
}

/* top specular line */
.app-icon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45) 30%,
    rgba(255, 255, 255, 0.45) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 4;
}

/* diagonal surface reflection */
.app-icon-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 35%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 2;
}

/* animated sheen sweep */
.app-icon-card__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}
.app-icon-card__shine::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -80%;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 100%
  );
  transform: rotate(18deg);
  animation: appShine 6s linear infinite;
}

@keyframes appShine {
  0%   { left: -80%; }
  60%  { left: 160%; }
  100% { left: 160%; }
}

.app-icon-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.app-name {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.2;
}




.app-section {
  padding: 74px 0 94px;
  overflow: hidden;
}

.app-section__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.92fr);
  gap: 40px;
}

.app-section__copy {
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.app-section p {
  color: rgba(255, 255, 255, 0.72);
}

/* ========== PLANS REGION SELECTOR ========== */
.plans-region-selector {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 10;
}

.plans-region-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.plans-region-trigger svg {
  width: 15px;
  height: 15px;
  color: var(--brand);
  flex-shrink: 0;
}

.plans-region-trigger svg:last-child {
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease;
}

.plans-region-trigger.open svg:last-child {
  transform: rotate(180deg);
}

.plans-region-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.plans-region-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(14, 14, 20, 0.92);
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 8px;
  animation: dropdownIn 0.18s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px) scale(0.96); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0)    scale(1);    }
}

.plans-region-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}

.plans-region-option svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: color 0.15s;
}

.plans-region-option:hover,
.plans-region-option.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.plans-region-option.active svg {
  color: var(--brand);
}

/* ========== PLANS LOCK OVERLAY ========== */
.plans-content {
  position: relative;
}

.plans-locked .plano-card,
.plans-locked .planos-toggle-wrapper {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.plans-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.plans-lock-overlay--opening {
  animation: overlayFadeOut 0.4s ease 0.65s forwards;
}

@keyframes overlayFadeOut {
  to { opacity: 0; }
}

.lock-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  animation: lockShake 2.8s ease-in-out infinite;
}

.lock-icon-wrap--opening {
  animation: lockOpen 0.85s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

@keyframes lockShake {
  0%, 55%, 100% { transform: rotate(0deg) scale(1); }
  60%  { transform: rotate(-10deg) scale(1.06); }
  65%  { transform: rotate(10deg) scale(1.06); }
  70%  { transform: rotate(-8deg) scale(1.04); }
  75%  { transform: rotate(8deg) scale(1.04); }
  80%  { transform: rotate(-4deg) scale(1.02); }
  85%  { transform: rotate(0deg) scale(1); }
}

@keyframes lockOpen {
  0%   { transform: rotate(0deg) scale(1); opacity: 1; }
  15%  { transform: rotate(-12deg) scale(1.1); }
  30%  { transform: rotate(12deg) scale(1.1); }
  45%  { transform: rotate(-8deg) scale(1.08); }
  58%  { transform: rotate(0deg) scale(1.05); }
  75%  { transform: translateY(-6px) scale(1.18); opacity: 1; }
  100% { transform: translateY(-28px) scale(0.7); opacity: 0; }
}

.lock-icon-wrap svg,
.plans-lock-overlay svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.plans-lock-overlay p {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 240px;
  line-height: 1.5;
}

.app-section__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


.app-section__feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.app-section__feature-list article {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 147, 69, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.app-section__visual {
  position: relative;
}

.phone-visual {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phone-float 5s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.phone-visual__img {
  width: 165%;
  max-width: 165%;
  height: auto;
  display: block;
  mask-image:
    linear-gradient(to right,  transparent 0%, black 18%, black 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 18%, black 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.phone-visual:hover {
  animation-play-state: paused;
}

.app-sheen {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.phone-visual__halo {
  position: absolute;
  inset: auto 8% 10% 8%;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 112, 34, 0.44), transparent 62%);
}

.phone-visual__device {
  position: absolute;
  inset: 46px 26% 50px 26%;
  padding: 14px;
  border-radius: 44px;
  background: linear-gradient(160deg, #4c342c 0%, #181212 26%, #090808 74%, #33251e 100%);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  transform: rotate(8deg);
}

.phone-visual__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 92px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0d0c0c;
}

.phone-visual__screen {
  height: 100%;
  display: grid;
  gap: 14px;
  padding: 28px 18px 18px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 110, 35, 0.18) 0%, rgba(9, 9, 9, 0) 28%),
    #0d0c0c;
}

.phone-screen__topbar,
.phone-screen__status,
.phone-screen__speedtest,
.phone-screen__actions span {
  border-radius: 18px;
  border: 1px solid rgba(255, 142, 63, 0.14);
}

.phone-screen__topbar {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.phone-screen__topbar span,
.phone-screen__status strong,
.phone-screen__speedtest strong {
  font-family: var(--font-ui);
  font-weight: 700;
}

.phone-screen__topbar small,
.phone-screen__status small,
.phone-screen__speedtest small,
.phone-screen__nav span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.phone-screen__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.phone-screen__status span {
  color: #ffae72;
  font-family: var(--font-ui);
  font-weight: 700;
}

.phone-screen__actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.phone-screen__actions span {
  display: grid;
  place-items: center;
  min-height: 62px;
  background: rgba(255, 255, 255, 0.03);
}

.phone-screen__speedtest {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.speed-gauge {
  position: relative;
  width: 96px;
  height: 96px;
  align-self: center;
  justify-self: end;
}

.speed-gauge__arc {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.08);
  border-right-color: var(--color-brand);
  border-top-color: rgba(255, 142, 63, 0.8);
}

.speed-gauge__needle {
  position: absolute;
  left: 48px;
  top: 50px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: #ffc59a;
  transform-origin: 0 50%;
  transform: rotate(-24deg);
}

.phone-screen__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.phone-screen__nav span {
  display: grid;
  justify-items: center;
}

.phone-screen__nav .is-active {
  color: #ffb680;
}

.phone-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  max-width: 152px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  z-index: 8;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: default;
}

.phone-card:hover {
  transform: translateY(-8px) scale(1.06) rotate(0deg) !important;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.48), 0 0 28px rgba(255, 120, 30, 0.2), 0 1px 0 rgba(255, 255, 255, 0.18) inset;
  border-color: rgba(255, 255, 255, 0.22);
  z-index: 12;
}

.phone-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gradient-brand);
  color: #ffffff;
  flex-shrink: 0;
}

.phone-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

.phone-card__label {
  color: rgba(255, 255, 255, 0.88);
}

.phone-card--tl {
  top: 13%;
  left: 3%;
  transform: rotate(-7deg);
}

.phone-card--ml {
  top: 47%;
  left: 1%;
  transform: rotate(-5deg);
}

.phone-card--tr {
  top: 9%;
  right: 3%;
  transform: rotate(7deg);
}

.phone-card--br {
  bottom: 16%;
  right: 2%;
  transform: rotate(5deg);
}

/* ── Phone shatter ── */

/* ── Store buttons ── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  color: var(--color-white);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(255, 255, 255, 0.16) inset;
  transform: translateY(-3px);
}

.store-btn__logo {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-btn__text {
  display: grid;
  gap: 3px;
  text-align: left;
}

.store-btn__text small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-ui);
  font-weight: 500;
  line-height: 1;
}

.store-btn__text strong {
  font-size: 0.9rem;
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 1;
}

/* ── Coverage section ── */
.coverage-section {
  padding: 80px 0 180px;
}

.coverage-section__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  gap: 32px;
}

.coverage-section__map {
  position: relative;
}

.coverage-map-artwork {
  width: 100%;
  height: auto;
  display: block;
}

.coverage-section__map .coverage-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(38%);
}

.contact-map-artwork {
  width: 100%;
  height: auto;
}

.contact-map-iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.coverage-section__copy {
  display: grid;
  gap: 24px;
}

.coverage-section p {
  color: rgba(255, 255, 255, 0.7);
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.coverage-stats article {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 147, 69, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.coverage-stats strong {
  font-family: var(--font-ui);
  font-size: 1.4rem;
}

.coverage-stats span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.coverage-region-list {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 147, 69, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.coverage-region-list strong {
  color: #ffb478;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
}

.coverage-region-list div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.coverage-region-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 147, 69, 0.14);
}

.coverage-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.coverage-cta > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.coverage-cta .button--primary {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
}

.coverage-cta .button--primary:hover {
  filter: brightness(1.1);
}

.coverage-cta .button--primary span {
  color: #ffffff;
  font-weight: 700;
}

.coverage-cta strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.coverage-cta span {
  color: rgba(255, 255, 255, 0.88);
}

.coverage-bottom-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 147, 69, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wifi-hero-section {
  position: relative;
  width: 100%;
  min-height: 750px;
  background: url('./assets/images/hero-bg.png') center center / cover no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 48px;
  border-radius: 44px 44px 0 0;
  margin-top: -48px;
}

.wifi-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, #fffaf6 85%, #fffaf6 100%);
  pointer-events: none;
  z-index: 2;
}

.wifi-hero-bg-circle {
  position: absolute;
  top: -90px; right: -170px;
  width: 640px; height: 920px;
  background: radial-gradient(circle at center,
    rgba(255,120,0,0.95) 0%,
    rgba(255,120,0,0.72) 40%,
    rgba(255,120,0,0.22) 68%,
    rgba(255,120,0,0) 100%);
  filter: blur(26px);
  border-radius: 50%;
  z-index: 1;
}

.wifi-hero-bg-tech {
  position: absolute;
  top: 0; right: 0;
  width: 38%; height: 100%;
  background:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px,
      transparent 1px, transparent 32px);
  opacity: 0.22;
  z-index: 2;
}

.wifi-hero-mini-card {
  position: absolute;
  top: 250px; left: 360px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px 12px 12px 12px;
  box-shadow: 22px 10px 24px rgba(0,0,0,0.08);
  z-index: 6;
}
.wifi-hero-mini-emoji { font-size: 26px; line-height: 1;}
.wifi-hero-mini-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
  font-size: 15px;
  color: #444; font-weight: 500;
}
.wifi-hero-mini-text strong { color: #ff4400; }

.wifi-hero-container {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  padding-top: 30px;
}

.wifi-hero-house {
  width: 120%;
  max-width: 440px;
  z-index: 3;
  display: flex;
  justify-content: center;
}
.wifi-hero-house img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

.wifi-hero-card {
  width: 90%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.08);
  z-index: 6;
  margin-top: -50px;
  border: 10px solid #fff;
}

.wifi-hero-card-top {
  background: linear-gradient(180deg, #ff7a00 0%, #ff4f00 100%);
  padding: 18px 22px 12px;
  text-align: center;
  border-radius: 12px 12px 12px 12px;
}

.hero-typewriter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  min-height: 26px;
  white-space: nowrap;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-tw-fixed { color: #ffffff; margin-right: 6px; }
.hero-tw-word  { color: #ffffff; }
.hero-tw-highlight {
  color: rgba(0,0,0,0.8);
  background: rgba(255,68,0,0.75);
  border-radius: 0;
  padding: 0;
}
.hero-tw-cursor {
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-left: 1px;
  animation: twBlink 0.75s step-end infinite;
}
.hero-tw-cursor.hidden { opacity: 0; animation: none; }
@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.wifi-hero-big-title {
  font-size: 86px;
  line-height: 0.9;
  font-weight: 700;
  color: #fff;
  letter-spacing: -4px;
  margin: 0;
}

.wifi-hero-title-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
}

.wifi-hero-badge {
  position: absolute;
  right: -34px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 28px;
  padding: 0 4px;
  border-radius: 0px 10px 0px 10px;
  background: rgb(255,174,0);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.wifi-hero-card-bottom {
  padding: 24px 24px 24px;
  text-align: center;
}

.wifi-hero-offer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.wifi-hero-offer-line {
  width: 5px; height: 50px;
  border-radius: 999px;
  background: #ff4400;
  flex-shrink: 0;
}
.wifi-hero-offer-text { text-align: left; }
.wifi-hero-main {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #333;
  line-height: 1.1;
}
.wifi-hero-highlight {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #ff4400;
  line-height: 1;
}

.wifi-hero-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  margin-bottom: 22px;
}
.wifi-hero-rs {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-right: 3px;
  margin-bottom: 16px;
}
.wifi-hero-value {
  font-size: 96px;
  line-height: 0.82;
  font-weight: 700;
  color: #ff4400;
}
.wifi-hero-cents {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #ff4400;
  margin-bottom: 38px;
}
.wifi-hero-month {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin-left: -30px;
  margin-bottom: 18px;
}

.wifi-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 10px 10px;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.wifi-hero-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.commercial-section {
  padding-top: 22px;
}

.commercial-section__card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.95fr);
  gap: 26px;
  align-items: center;
  padding: 36px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 100% 20%, rgba(255, 133, 56, 0.2), transparent 20%),
    linear-gradient(135deg, #fffefc 0%, #f8f1ea 58%, #f4e7dd 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.commercial-section__copy {
  display: grid;
  gap: 22px;
}

.commercial-section p,
.client-area-section p,
.faq-section p,
.contact-section p,
.contact-card span,
.contact-card li {
  color: var(--color-text-soft);
}

.commercial-section__points {
  display: grid;
  gap: 12px;
}

.commercial-section__points li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 600;
}

.commercial-section__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand);
}

.promo-artwork {
  position: relative;
  min-height: 340px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 114, 38, 0.68), transparent 30%),
    linear-gradient(180deg, #fffaf7 0%, #fff3ea 100%);
  overflow: hidden;
}

.promo-artwork__glow {
  position: absolute;
  right: -2%;
  top: 8%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 118, 40, 0.92), rgba(255, 118, 40, 0) 72%);
  opacity: 0.72;
}

.promo-artwork__house {
  position: absolute;
  left: 12%;
  top: 18%;
  width: 150px;
  height: 134px;
}

.promo-house__roof {
  width: 118px;
  height: 118px;
  margin: 0 auto -52px;
  transform: rotate(45deg);
  border-radius: 18px;
  background: linear-gradient(145deg, #3c2b25 0%, #151211 100%);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.14);
}

.promo-house__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff7f0 0%, #f3e5d9 100%);
  box-shadow: var(--shadow-light);
}

.promo-house__window {
  display: block;
  min-height: 48px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff973d 0%, #ff4400 100%);
  opacity: 0.72;
}

.promo-house__window--wide {
  grid-column: 1 / -1;
}

.promo-artwork__card {
  position: absolute;
  left: 35%;
  top: 28%;
  display: grid;
  gap: 8px;
  width: 262px;
  padding: 24px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-light);
}

.promo-artwork__card small,
.promo-artwork__card span {
  color: var(--color-brand);
  font-family: var(--font-ui);
  font-weight: 700;
}

.promo-artwork__card strong {
  font-family: var(--font-ui);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.92;
  color: var(--color-brand);
  letter-spacing: -0.05em;
}

.promo-artwork__card p {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.promo-artwork__card b {
  display: block;
  color: var(--color-brand);
  font-size: 1.8rem;
}

.client-area-section {
  padding-top: 34px;
  overflow: hidden;
}

.client-area-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.1fr);
  gap: 28px;
  align-items: end;
}

.client-area-section__copy {
  display: grid;
  gap: 24px;
}

.client-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.client-action-card {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(87, 59, 40, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 40px rgba(196, 165, 137, 0.12);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.client-action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 48px rgba(196, 165, 137, 0.2);
  border-color: rgba(255, 90, 0, 0.18);
}

.client-action-card .icon {
  width: 38px;
  height: 38px;
}

.client-action-card h3 {
  font-size: 0.88rem;
}

.client-action-card p {
  font-size: 0.8rem;
}

.client-area-section__visual {
  position: relative;
  height: 660px;
  margin-bottom: -44px;
}

.customer-artwork {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 660px;
  width: auto;
  max-width: 120%;
  display: block;
}

.faq-section {
  padding-top: 60px;
  padding-bottom: 40px;
}

.faq-section__watermark {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  color: rgba(255, 132, 43, 0.055);
  pointer-events: none;
  white-space: nowrap;
}

.faq-section__heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.faq-section__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.faq-section__column {
  display: grid;
  gap: 12px;
}

.faq-cta-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
  border-radius: 20px;
  border: 1.5px solid rgba(255, 81, 9, 0.18);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 238, 228, 0.92) 100%);
  box-shadow: 0 12px 40px rgba(255, 81, 9, 0.07), 0 2px 0 rgba(255, 81, 9, 0.12);
  position: relative;
  overflow: hidden;
}

.faq-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 20px 20px 0 0;
}

.faq-cta-card strong {
  font-family: var(--font-ui);
  font-size: 1.05rem;
}

.faq-section__highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(87, 59, 40, 0.07);
}

.faq-section__highlights span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(87, 59, 40, 0.08);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(194, 157, 124, 0.1);
}

.faq-section__highlights span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.contact-section {
  padding-top: 40px;
  padding-bottom: 22px;
}

.contact-section__heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-channels a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(87, 59, 40, 0.08);
  box-shadow: 0 22px 38px rgba(212, 170, 139, 0.1);
}


.contact-channels strong,
.contact-card h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.contact-channels span {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  white-space: nowrap;
}

.contact-card p,
.contact-card span {
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.contact-map {
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(87, 59, 40, 0.08);
  box-shadow: 0 22px 44px rgba(210, 171, 140, 0.12);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(87, 59, 40, 0.08);
  box-shadow: 0 22px 38px rgba(212, 170, 139, 0.09);
}

.contact-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card strong {
  font-family: var(--font-ui);
  font-size: 1rem;
}

.contact-card ul {
  display: grid;
  gap: 8px;
}

.contact-card li {
  position: relative;
  padding-left: 18px;
}

.contact-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand);
}

.contact-section__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  margin-top: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(87, 59, 40, 0.08);
  box-shadow: 0 22px 40px rgba(212, 170, 139, 0.12);
}

.contact-section__cta strong {
  font-family: var(--font-ui);
  font-size: 1.2rem;
}

@media (max-width: 1200px) {
  .hero-section__grid,
  .benefits-section__grid,
  .app-section__grid,
  .coverage-section__grid,
  .commercial-section__card,
  .client-area-section__grid {
    grid-template-columns: 1fr;
  }

  .hero-section__visual,
  .client-area-section__visual {
    min-height: auto;
  }

  .hero-section__highlights,
  .plans-benefits,
  .coverage-stats,
  .contact-channels,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-grid,
  .faq-section__layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 960px) {
  .hero-section {
    padding-top: calc(var(--header-height) + 2px);
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.56) 46%, rgba(5, 5, 5, 0.9) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.48) 44%, rgba(5, 5, 5, 0.18) 100%);
  }

  .hero-section__background-image {
    object-position: 72% top;
  }

  .hero-section__grid,
  .app-section__grid {
    gap: 22px;
  }

  .hero-section__grid {
    min-height: 480px;
  }

  .hero-section__highlights,
  .plans-benefits,
  .app-section__feature-list,
  .client-area-grid,
  .coverage-stats,
  .coverage-bottom-strip,
  .contact-channels,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .plans-section__toolbar,
  .contact-section__cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .coverage-cta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plans-section {
    margin-top: -92px;
    padding-top: 120px;
  }

  .commercial-section__card {
    padding: 22px;
  }

  .phone-visual__device {
    inset: 48px 20% 46px 20%;
  }

  .promo-artwork__card {
    left: 22%;
  }

  .button {
    min-height: 44px;
  }

  .region-select__trigger {
    min-height: 44px;
  }
}

@media (max-width: 720px) {
  .section-shell--dark,
  .section-shell--light {
    padding: 28px 0;
  }

  .hero-section__actions,
  .benefits-section__points,
  .app-section__stores {
    flex-direction: column;
    gap: 12px;
  }

  .hero-section__actions .button,
  .benefits-section__points .button,
  .app-section__stores > * {
    width: 100%;
  }

  .hero-section__highlights {
    margin-top: -84px;
    padding: 0 8px;
  }

  .hero-highlight,
  .plan-card,
  .plans-benefit,
  .benefits-section__points article,
  .app-section__feature-list article,
  .client-action-card,
  .contact-channels a,
  .contact-card {
    padding: 16px;
  }

  .apps-marquee {
    min-height: 180px;
    padding: 40px 0 52px;
  }

  .apps-marquee__track {
    gap: 18px;
  }

  .app-icon-card {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 1px;
  }

  .phone-visual {
    min-height: 440px;
  }

  .phone-visual__device {
    inset: 56px 14% 48px 14%;
  }

  .phone-card--tl,
  .phone-card--ml,
  .phone-card--tr,
  .phone-card--br {
    display: none;
  }

  .promo-artwork {
    min-height: 280px;
  }

  .promo-artwork__house {
    left: 8%;
    top: 18%;
    transform: scale(0.8);
    transform-origin: left top;
  }

  .promo-artwork__card {
    left: 18%;
    top: 34%;
    width: 200px;
    padding: 12px;
  }

  .contact-section__cta,
  .coverage-cta {
    gap: 12px;
  }

  .plans-section {
    margin-top: -72px;
    padding-top: 96px;
  }

  .plan-card {
    min-height: auto;
  }

  .region-select__trigger {
    min-height: 44px;
    padding: 0 14px;
    gap: 12px;
  }

  .header__inner {
    height: 70px;
    gap: 10px;
  }

  .button {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100vw - 24px), 1180px);
  }

  .hero-section__content,
  .benefits-section__copy,
  .app-section__copy,
  .coverage-section__copy,
  .commercial-section__copy,
  .client-area-section__copy {
    gap: 18px;
  }

  .hero-section h1,
  .section-heading h2,
  .benefits-section h2,
  .app-section h2,
  .coverage-section h2,
  .commercial-section h2,
  .client-area-section h2,
  .faq-section h2,
  .contact-section h2 {
    font-size: clamp(1.7rem, 8.5vw, 3rem);
    text-wrap: balance;
  }

  .hero-section__grid {
    grid-template-columns: 1fr;
    min-height: 480px;
  }

  .hero-section__background-image {
    object-position: 75% top;
  }

  .hero-section__visual {
    min-height: auto;
  }

  .hero-section__highlights {
    grid-template-columns: 1fr;
    margin-top: -52px;
    gap: 10px;
  }

  .hero-highlight {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 12px;
    min-height: 90px;
  }

  .hero-highlight__icon {
    width: 52px;
    height: 52px;
  }

  .plans-section {
    margin-top: -68px;
    padding-top: 88px;
  }

  .plan-card__speed strong {
    font-size: 2.8rem;
  }

  .plan-card__audience {
    font-size: 0.85rem;
  }

  .apps-marquee__caption {
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .phone-visual {
    min-height: 400px;
  }

  .phone-visual__device {
    inset: 60px 8% 36px 8%;
  }

  .phone-screen__speedtest {
    grid-template-columns: 1fr;
  }

  .speed-gauge {
    justify-self: start;
  }

  .promo-artwork__card {
    left: 12%;
    right: 12%;
    width: auto;
    padding: 12px;
  }

  .promo-artwork__card p b {
    font-size: 1.1rem;
  }

  .contact-section__cta,
  .coverage-cta {
    padding: 14px;
  }

  .button {
    width: 100%;
    min-height: 42px;
  }

  .region-select__trigger {
    min-height: 44px;
    gap: 10px;
  }

  .header__logo img {
    width: min(90px, 32vw);
  }
}

/* Hero banner: parallax no scroll + fragmentação no hover */
.hero-section {
  cursor: crosshair;
}

.hero-section .button,
.hero-section a,
.hero-section button {
  cursor: pointer;
}

.hero-banner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none; /* eventos capturados via document no JS */
}

.hero-banner__grid {
  position: absolute;
  /* -6% em cada eixo garante que os tiles nunca mostrem bordas pretas
     durante o parallax ou a fragmentação */
  inset: -6%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(7, 1fr);
  will-change: transform;
}

.hero-banner__tile {
  background-image: url('/BANNER/Banner-astronauta.webp');
  background-repeat: no-repeat;
  background-color: #050505;
  filter: saturate(0.96) contrast(1.02);
  transition:
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 480ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  transform-origin: center center;
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner__tile {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ── Scroll-reveal ── */
.reveal-up    { opacity: 0; transform: translateY(36px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-down  { opacity: 0; transform: translateY(-40px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left  { opacity: 0; transform: translateX(-42px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right { opacity: 0; transform: translateX(42px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale { opacity: 0; transform: scale(0.88);       transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.3, 0.64, 1); }
.reveal-fade  { opacity: 0;                               transition: opacity 0.75s ease; }

.reveal-up.is-visible, .reveal-down.is-visible,
.reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: translate(0, 0); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }
.reveal-fade.is-visible  { opacity: 1; }

.reveal-up.delay-1, .reveal-down.delay-1, .reveal-left.delay-1,
.reveal-right.delay-1, .reveal-scale.delay-1, .reveal-fade.delay-1 { transition-delay: 0.1s; }
.reveal-up.delay-2, .reveal-down.delay-2, .reveal-left.delay-2,
.reveal-right.delay-2, .reveal-scale.delay-2, .reveal-fade.delay-2 { transition-delay: 0.2s; }
.reveal-up.delay-3, .reveal-down.delay-3, .reveal-left.delay-3,
.reveal-right.delay-3, .reveal-scale.delay-3, .reveal-fade.delay-3 { transition-delay: 0.3s; }
.reveal-up.delay-4, .reveal-down.delay-4, .reveal-left.delay-4,
.reveal-right.delay-4, .reveal-scale.delay-4, .reveal-fade.delay-4 { transition-delay: 0.4s; }
.reveal-up.delay-5, .reveal-down.delay-5, .reveal-left.delay-5,
.reveal-right.delay-5, .reveal-scale.delay-5, .reveal-fade.delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-down, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Planos: toggle + carrossel ── */
.planos-toggle-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

.planos-toggle-wrapper::-webkit-scrollbar {
  display: none;
}

.planos-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: fit-content;
  margin: 20px auto 32px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  border-radius: 999px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.14),
    inset 0 2px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.planos-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.38) 30%,
    rgba(255, 255, 255, 0.48) 50%,
    rgba(255, 255, 255, 0.38) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 999px;
  pointer-events: none;
  z-index: 3;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(33.3333% - 2px);
  height: calc(100% - 6px);
  background: var(--gradient-brand);
  border-radius: 999px;
  border: none;
  transition: transform 0.42s cubic-bezier(0.34, 1.36, 0.64, 1);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(255, 68, 0, 0.35);
}

.toggle-btn {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  padding: 10px 28px;
  min-width: 120px;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: color 0.22s ease;
  flex: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.toggle-btn.active {
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.carousel-wrapper {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.carousel-content {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 2px;
}

.carousel-viewport {
  width: 100%;
  overflow: visible;
  padding: 16px 0;
}

.planos-grupo {
  display: none;
  width: 100%;
}

.planos-grupo.active {
  display: block;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.plano-card {
  position: relative;
  width: 280px;
  min-width: 0;
  max-width: none;
  flex: 0 0 280px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  /* liquid glass: fundo escuro translúcido, borda com brilho preservado */
  background: rgba(8, 8, 12, 0.55);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-radius: 32px;
  overflow: hidden;
  /* borda brilhante preservada = refração da luz na aresta do vidro */
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.18),
    0 10px 32px rgba(0, 0, 0, 0.24),
    0 28px 52px rgba(0, 0, 0, 0.18),
    inset 0 2px 0 rgba(255, 255, 255, 0.14),
    inset 2px 0 0 rgba(255, 255, 255, 0.04),
    inset -1px 0 0 rgba(255, 255, 255, 0.02),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.38s ease, border-color 0.38s ease;
}

/* reflexo de luz na superfície superior — glare do vidro */
.plano-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.012) 25%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* brilho na aresta superior — refração concentrada */
.plano-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 25%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.35) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 999px;
  pointer-events: none;
  z-index: 3;
}

.plano-card:hover {
  transform: translateY(-10px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.14),
    0 16px 44px rgba(0, 0, 0, 0.2),
    0 36px 64px rgba(0, 0, 0, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.42),
    inset 2px 0 0 rgba(255, 255, 255, 0.08),
    inset -1px 0 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.plano-topo {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px 8px;
}

.plano-velocidade {
  font-size: clamp(80px, 12vw, 110px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -6px;
  font-family: var(--font-ui);
  color: var(--color-white);
}

.plano-tag {
  position: absolute;
  top: 62px;
  right: 28px;
  background: var(--color-brand);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.beneficios-lista {
  padding: 0 22px;
  margin: 16px 0 20px 0;
  flex: 1;
}

.beneficios-lista li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 500;
}

.plano-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.card-apps {
  margin: 0 18px 24px;
  margin-top: auto;
  padding-top: 20px;
}

.card-apps__label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  text-align: center;
}

.card-apps__wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.card-apps__wrap::before,
.card-apps__wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 2;
  pointer-events: none;
}

.card-apps__wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 8, 12, 0.9) 0%, transparent 100%);
}

.card-apps__wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 8, 12, 0.9) 0%, transparent 100%);
}

.card-apps__track {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  will-change: transform;
}

.card-apps__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.card-apps__item img {
  display: block;
  height: 100px;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.9;
}

.plano-btn {
  width: calc(100% - 36px);
  margin: 0 18px 20px;
  border: none;
  background: var(--gradient-brand);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px;
  border-radius: 22px;
  cursor: pointer;
  transition: filter 0.25s ease, transform 0.2s ease;
}

.plano-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.carousel-arrow {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 1px solid rgba(255, 141, 63, 0.22);
  border-radius: 50%;
  background: rgba(255, 93, 22, 0.08);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
  background: var(--color-brand);
  transform: translateY(-2px);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.3s ease;
}

.carousel-dot.active {
  width: 32px;
  background: var(--color-brand);
}

@media (max-width: 768px) {
  .toggle-btn {
    min-width: 0;
    font-size: 0.82rem;
    padding: 10px 18px;
  }

  .carousel-wrapper {
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

}

/* ========== COOKIE CONSENT BANNER ========== */
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@keyframes cookieSlideOut {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(110%); opacity: 0; }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  padding: 0 20px 20px;
  animation: cookieSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
  pointer-events: none;
}

.cookie-banner--hiding {
  animation: cookieSlideOut 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.cookie-banner__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(12, 12, 18, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 -4px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: auto;
}

.cookie-banner__text {
  flex: 1;
  min-width: 0;
}

.cookie-banner__text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cookie-banner__text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  max-width: 560px;
}

.cookie-banner__text abbr {
  text-decoration: underline dotted;
  cursor: help;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 68, 0, 0.35);
}

.cookie-btn--accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255, 68, 0, 0.5);
}

.cookie-btn--reject {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn--reject:hover {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    height: 44px;
  }
}

/* ========================================================
   OTIMIZAÇÕES MOBILE — até 768px
   Tipografia Fluida | Touch-Friendly | Responsividade
   ======================================================== */

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  /* ── TIPOGRAFIA FLUIDA COM CLAMP() ── */
  .section-heading h2,
  .hero-section h1,
  .benefits-section h2,
  .app-section h2,
  .coverage-section h2,
  .commercial-section h2,
  .client-area-section h2,
  .faq-section h2,
  .contact-section h2 {
    font-size: clamp(1.8rem, 7.5vw, 3.4rem);
    line-height: 1.1;
  }

  .section-heading p,
  .hero-section p,
  .benefits-section p,
  .app-section p,
  .coverage-section p,
  .commercial-section p,
  .client-area-section p,
  .faq-section p,
  .contact-section p {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.6;
  }

  /* ── CONTAINER E PADDING ── */
  :root {
    --container-width: min(100vw - 24px, 1180px);
  }

  .container {
    padding: 0 12px;
  }

  .section-shell--dark,
  .section-shell--light {
    padding: 32px 0;
  }

  /* ── BOTÕES TOUCH-FRIENDLY (44px mínimo) ── */
  .button {
    min-height: 44px;
    padding: 0 28px;
    font-size: 0.95rem;
    gap: 10px;
    border-radius: 12px;
  }

  .button--primary {
    min-height: 48px;
  }

  .header__cta {
    min-height: 44px;
    padding: 0 22px;
    font-size: 0.88rem;
  }

  .mobile-menu__cta {
    min-height: 50px;
  }

  /* ── CHAT FAB MOBILE ── */
  .chat-fab {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 16px;
  }

  .chat-fab .icon svg {
    width: 20px;
    height: 20px;
  }

  /* ── HERO SECTION ── */
  .hero-section {
    padding-top: calc(var(--header-height) + 4px);
    padding-bottom: 36px;
  }

  .hero-section::after {
    height: 180px;
  }

  .hero-section h1 {
    text-wrap: balance;
    word-spacing: normal;
  }

  .hero-section__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .hero-section__content {
    gap: 18px;
    padding-top: 0;
  }

  .hero-section__actions {
    gap: 12px;
    flex-direction: column;
  }

  .hero-section__actions .button {
    width: 100%;
  }

  .hero-section__highlights {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: -48px;
    padding: 0 12px;
  }

  .hero-highlight {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    min-height: 100px;
    padding: 16px;
    border-radius: 16px;
  }

  .hero-highlight__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .hero-highlight h3 {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }

  .hero-highlight p {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  /* ── PLANS/CARDS ── */
  .plan-card,
  .plans-benefit,
  .benefits-section__points article,
  .app-section__feature-list article,
  .client-action-card,
  .contact-channels a,
  .contact-card {
    padding: 16px;
    border-radius: 16px;
  }

  .plans-section {
    margin-top: -48px;
    padding-top: 72px;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-card__speed strong {
    font-size: clamp(2rem, 6vw, 3.2rem);
  }

  .plan-card__unit {
    font-size: 0.75rem;
  }

  .plan-card__audience {
    font-size: 0.9rem;
  }

  .plan-card__features {
    gap: 9px;
  }

  .plan-card__feature {
    font-size: 0.85rem;
  }

  /* ── BENEFITS ── */
  .benefits-section__grid {
    gap: 24px;
  }

  /* ── APP SECTION ── */
  .app-section__grid {
    gap: 24px;
  }

  .app-icon-card {
    width: 96px;
    height: 96px;
  }

  .phone-visual {
    min-height: 420px;
  }

  .phone-visual__device {
    inset: 60px 12% 48px 12%;
  }

  /* ── COVERAGE CTA ── */
  .coverage-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .coverage-cta .button--primary {
    width: 100%;
  }

  /* ── FAQs ── */
  .accordion-item {
    border-radius: 16px;
  }

  .accordion-item__trigger {
    padding: 16px;
    gap: 12px;
  }

  .accordion-item__question {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .accordion-item__body p {
    padding: 0 16px 0 50px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* ── TEAM & CONTACT SECTION ── */
  .contact-section__cta,
  .coverage-cta {
    flex-direction: column;
  }

  .contact-section__cta .button,
  .coverage-cta .button {
    width: 100%;
  }

  /* ── TICKER ── */
  .ticker-divider__item {
    padding: 0 16px;
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  /* ── REGION SELECT ── */
  .region-select__trigger {
    min-height: 48px;
    padding: 0 14px;
    gap: 12px;
  }

  .region-select__trigger strong,
  .region-select__item span {
    font-size: 0.9rem;
  }

  .region-select__trigger small {
    font-size: 0.78rem;
  }

  /* ── HEADER ── */
  .header__inner {
    height: 70px;
    gap: 12px;
    padding: 0 12px;
  }

  .header__logo img {
    width: min(100px, 30vw);
  }

  .header__burger {
    width: 26px;
    height: 26px;
  }

  /* ── MOBILE MENU ── */
  .mobile-menu__item-label {
    font-size: 0.9rem;
  }

  /* ── CHAT MODAL ── */
  .chat-window {
    max-width: 100%;
    max-height: 70vh;
  }

  .chat-body {
    max-height: 300px;
  }

  .chat-msg {
    max-width: 90%;
  }

  .chat-bubble {
    font-size: 0.825rem;
    padding: 10px 14px;
  }

  .chat-btn {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  /* ── FOOTER ── */
  .site-footer__body {
    gap: 16px;
    padding: 24px 0 20px;
  }

  .site-footer__nav {
    gap: 2px 2px;
  }

  .site-footer__nav a {
    font-size: 0.78rem;
    padding: 4px 8px;
  }

  .site-footer__copy {
    font-size: 0.72rem;
  }

  /* ── HERO HIGHLIGHTS STAGGERED ── */
  .hero-section__highlights {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* ── PROMO ARTWORK ── */
  .promo-artwork {
    min-height: 280px;
  }

  .promo-artwork__house {
    left: 10%;
    top: 15%;
    transform: scale(0.75);
  }

  .promo-artwork__card {
    left: 15%;
    right: 15%;
    width: auto;
    padding: 14px;
    border-radius: 12px;
  }

  .promo-artwork__card small {
    font-size: 0.75rem;
  }

  .promo-artwork__card strong {
    font-size: 1.4rem;
  }

  .promo-artwork__card p {
    font-size: 0.85rem;
  }

  /* ── CONTACT CARDS ── */
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    gap: 12px;
  }

  /* ── APPS MARQUEE ── */
  .apps-marquee {
    padding: 36px 0 48px;
    min-height: 160px;
  }

  .apps-marquee__caption {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  /* ── COMMERCIAL SECTION CARDS ── */
  .commercial-section__card {
    padding: 18px;
  }

  /* ── TEXT WRAPPING IMPROVEMENT ── */
  h1, h2, h3, h4, h5, h6 {
    text-wrap: pretty;
    hanging-punctuation: first last;
  }

  /* ── SPACING CONSISTENCY (8px baseline) ── */
  .section-heading {
    gap: 14px;
    margin-bottom: 28px;
  }

  /* ── COVERAGE STATS ── */
  .coverage-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .coverage-stats article {
    padding: 14px;
  }

  /* ── REGION LIST ── */
  .coverage-region-list {
    padding: 16px;
    gap: 10px;
  }

  .coverage-region-list span {
    padding: 0 12px;
    min-height: 38px;
    font-size: 0.85rem;
  }

  /* ── BENEFITS POINTS ── */
  .benefits-section__points {
    flex-direction: column;
  }

  /* ── APP ITEMS ── */
  .app-section__stores {
    flex-direction: column;
  }

  .app-section__stores > * {
    width: 100%;
  }
}

@media (max-width: 600px) {
  /* Espaçamento mais agressivo em telas muito pequenas */
  .section-shell--dark,
  .section-shell--light {
    padding: 28px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-section h1 {
    font-size: clamp(1.6rem, 8vw, 2.8rem);
  }

  .hero-section__highlights {
    margin-top: -40px;
  }

  .plan-card {
    padding: 14px;
  }

  .hero-highlight {
    padding: 14px;
    gap: 12px;
  }

  .accordion-item__trigger {
    padding: 14px;
  }

  .button {
    padding: 0 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* Ultra mobile (telefones pequenos) */
  .container {
    padding: 0 16px;
  }

  .hero-section__grid {
    gap: 18px;
  }

  .hero-highlight {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    padding: 12px;
    min-height: 90px;
  }

  .hero-highlight__icon {
    width: 48px;
    height: 48px;
  }

  .button {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .plan-card {
    padding: 12px;
  }

  .chat-fab {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 12px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 24px;
  }
}

/* ==========================================================
   RESPONSIVO 2.0 — Fix pack organizado (tablet + mobile)
   Desktop (>=1025px) preservado. Apenas mobile/tablet.
   ========================================================== */

/* ---------- TABLET (<=1024px) — ajustes gerais ---------- */
@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  :root {
    --container-width: min(calc(100vw - 32px), 1180px);
  }

  .container {
    padding: 0 16px;
  }

  .section-shell--dark,
  .section-shell--light {
    padding: 40px 0;
  }

  /* Hero: tipografia e sombras leves */
  .hero-section {
    padding-bottom: 48px;
  }

  .hero-section__grid {
    min-height: auto;
    gap: 28px;
  }

  .hero-section__highlights {
    margin-top: -60px;
    padding: 0 12px;
  }

  /* Phone visual: reduz escala e desliga rotação/sobreposições */
  .phone-visual {
    min-height: 480px;
  }

  .phone-visual__img {
    width: 78%;
    max-width: 340px;
  }

  .phone-visual__device {
    display: none;
  }

  .phone-card--tl,
  .phone-card--ml,
  .phone-card--tr,
  .phone-card--br {
    display: none;
  }

  /* WiFi hero: estabiliza a caixa de preço no tablet */
  .wifi-hero-section {
    min-height: auto;
    padding: 48px 16px 80px;
    border-radius: 32px 32px 0 0;
    margin-top: -32px;
  }

  .wifi-hero-container {
    width: 100%;
    max-width: 520px;
    padding-top: 0;
  }

  .wifi-hero-mini-card {
    position: static;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.82);
  }

  .wifi-hero-house {
    width: 100%;
    max-width: 360px;
  }

  .wifi-hero-big-title {
    font-size: 68px;
    letter-spacing: -2px;
  }

  .wifi-hero-value {
    font-size: 78px;
  }

  .wifi-hero-bg-circle {
    width: 420px;
    height: 620px;
    top: -60px;
    right: -160px;
  }

  /* Customer section */
  .client-area-section__visual {
    height: auto;
    min-height: 360px;
    margin-bottom: 0;
  }

  .customer-artwork {
    position: relative;
    height: auto;
    max-height: 520px;
    width: auto;
    max-width: 100%;
    left: auto;
    transform: none;
    margin: 0 auto;
  }

  /* Promo artwork: transforma em layout fluido */
  .promo-artwork {
    min-height: 320px;
  }

  /* Coverage section */
  .coverage-section {
    padding: 48px 0 72px;
  }

  .coverage-section__map .coverage-cta {
    position: static;
    transform: none;
    margin-top: 16px;
  }

  /* Contact map */
  .contact-map-iframe {
    height: 320px;
  }

  /* FAQ watermark: segura em tela pequena */
  .faq-section__watermark {
    font-size: clamp(3.5rem, 12vw, 7rem);
  }

  /* Commercial card */
  .commercial-section__card {
    padding: 28px;
  }
}

/* ---------- TABLET médio (<=960px) ---------- */
@media (max-width: 960px) {
  /* Hero background: recentraliza o astronauta */
  .hero-section__background-image {
    object-position: 65% top;
  }

  /* Plans section: sobe menos, sem buraco */
  .plans-section {
    margin-top: -80px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  /* Benefícios */
  .benefits-section__grid {
    gap: 24px;
  }

  .canais-card {
    max-width: 100%;
    align-self: stretch;
    margin: 0 auto;
  }

  .apps-marquee {
    margin-top: -32px;
    min-height: 180px;
    padding: 36px 0 56px;
  }

  /* Coverage stats em 2 colunas */
  .coverage-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-bottom-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  /* Client area: copy acima, imagem abaixo, ambos fluidos */
  .client-area-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

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

  /* FAQ layout */
  .faq-section {
    padding-top: 40px;
  }

  .faq-section__layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Contact */
  .contact-channels {
    grid-template-columns: 1fr;
  }

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

  .contact-section__cta {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
    text-align: center;
  }

  .contact-section__cta .button {
    justify-self: center;
    width: 100%;
    max-width: 360px;
  }

  /* Commercial section */
  .commercial-section__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
}

/* ---------- MOBILE grande (<=768px) ---------- */
@media (max-width: 768px) {
  /* Container + spacing consistência */
  :root {
    --container-width: min(calc(100vw - 24px), 1180px);
    --header-height: 68px;
  }

  .container {
    padding: 0 14px;
  }

  .section-shell--dark,
  .section-shell--light {
    padding: 32px 0;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 24px;
    text-align: center;
    justify-items: center;
  }

  /* Tipografia fluida consistente */
  .hero-section h1,
  .section-heading h2,
  .benefits-section h2,
  .app-section h2,
  .coverage-section h2,
  .commercial-section h2,
  .client-area-section h2,
  .faq-section h2,
  .contact-section h2 {
    font-size: clamp(1.85rem, 7.5vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-wrap: balance;
  }

  /* ===== Header ===== */
  .header {
    /* Garante que a logo não vaze para fora do header */
    overflow: hidden;
  }

  .header__inner {
    height: 60px;
    padding: 0 14px;
    gap: 10px;
  }

  /* Logo menor para não colidir com o texto do hero */
  .header__logo img {
    width: auto;
    max-width: min(78px, 22vw);
    max-height: 36px;
    object-fit: contain;
    display: block;
  }

  /* ===== Hero Mobile — full-height overlay ===== */
  :root {
    --header-height: 60px;
  }

  .hero-section {
    padding-top: 0;
    padding-bottom: 36px;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
  }

  /* Background cobre o hero inteiro */
  .hero-section__background {
    height: 100%;
    inset: 0;
  }

  .hero-section__background-image {
    object-position: center 20%;
  }

  /* Gradiente forte de baixo para cima para legibilidade do texto */
  .hero-section::before {
    height: 100%;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.1) 0%,
      rgba(5, 5, 5, 0)   20%,
      rgba(5, 5, 5, 0.5) 55%,
      rgba(5, 5, 5, 0.96) 80%,
      rgba(5, 5, 5, 1)   100%
    );
  }

  .hero-section::after {
    display: none;
  }

  .hero-section h1 {
    word-spacing: normal;
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .hero-section__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .hero-section__content {
    gap: 14px;
    padding-top: 0;
    text-align: left;
  }

  .hero-section__visual {
    display: none;
  }

  /* Botões lado a lado */
  .hero-section__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .hero-section__actions .button {
    flex: 1 1 140px;
    min-width: 0;
  }

  /* Highlights: scroll horizontal compacto */
  .hero-section__highlights {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    margin-top: 8px;
    padding: 0 0 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none;
  }

  .hero-section__highlights::-webkit-scrollbar {
    display: none;
  }

  .hero-highlight {
    flex: 0 0 auto;
    width: 195px;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 12px;
    min-height: auto;
    border-radius: 16px;
  }

  .hero-highlight__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .hero-highlight h3 {
    font-size: 0.88rem;
  }

  .hero-highlight p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  /* ===== Plans ===== */
  .plans-section {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 36px;
  }

  .plans-section .section-heading {
    margin-bottom: 20px;
  }

  .plans-region-selector {
    margin-bottom: 22px;
  }

  .planos-toggle-wrapper {
    padding: 4px 0;
  }

  .planos-toggle {
    width: 100%;
    flex-wrap: nowrap;
    margin: 20px 0 32px;
  }

  .toggle-btn {
    min-width: 0;
    flex: 1;
    font-size: 0.8rem;
    padding: 10px 8px;
    white-space: nowrap;
  }

  .carousel-wrapper {
    grid-template-columns: 36px 1fr 36px;
    gap: 6px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .plano-card {
    width: 100%;
    min-width: 0;
    max-width: 320px;
    margin: 0 auto;
    flex: 0 0 calc(100vw - 120px);
    min-height: auto;
    border-radius: 24px;
  }

  .plano-velocidade {
    font-size: clamp(72px, 22vw, 96px);
    letter-spacing: -4px;
  }

  .plano-topo {
    min-height: 104px;
    padding: 20px 16px 4px;
  }

  .plano-tag {
    top: 54px;
    right: 20px;
    font-size: 0.74rem;
    padding: 4px 10px;
  }

  .beneficios-lista {
    padding: 0 18px;
    margin: 14px 0 16px;
  }

  .beneficios-lista li {
    font-size: 0.88rem;
    margin-bottom: 10px;
  }

  .card-apps {
    margin: 0 14px 20px;
    padding-top: 16px;
  }

  .card-apps__item,
  .card-apps__item img {
    height: 72px;
  }

  .plano-btn {
    width: calc(100% - 28px);
    margin: 0 14px 18px;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: 18px;
  }

  /* ===== Benefits (streamings) — ordem: canais card → texto → apps ===== */

  /* Grid vira flex-column para poder controlar ordem com order */
  .benefits-section__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* display:contents dissolve o wrapper visual, tornando filhos
     (canais-card e apps-marquee) filhos diretos do flex-column */
  .benefits-section__visual {
    display: contents;
  }

  /* 1º — Canais card no topo */
  .canais-card {
    order: 0;
    max-width: 100%;
    width: 100%;
    align-self: stretch;
    padding: 0 0 0;
    margin-bottom: 24px;
    /* Borda mais visível no fundo escuro */
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
  }

  .canais-card__frame {
    margin: 10px 10px 0;
    padding: 12px;
    border-radius: 12px;
  }

  .canais-card__text {
    padding: 14px 16px 20px;
    font-size: 1.05rem;
    text-align: center;
  }

  .canais-card__text em,
  .canais-card__text span {
    font-size: 1.35rem;
  }

  /* 3º — Copy (título, texto, pontos) */
  .benefits-section__copy {
    order: 2;
    text-align: center;
    justify-items: center;
    gap: 14px;
    padding: 4px 0 24px;
  }

  .benefits-section__points {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .benefits-section__points article {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    padding: 12px 10px;
    text-align: center;
    justify-items: center;
  }

  /* 2º — Apps scrolling entre canais e texto */
  .apps-marquee {
    order: 1;
    margin-top: 0;
    min-height: 160px;
    padding: 24px 0 40px;
    border-radius: 20px;
    background: rgba(7, 6, 6, 0.4);
  }

  /* Gap menor entre os apps do marquee */
  .apps-marquee__track {
    gap: 4px;
    margin-top: 0;
  }

  .app-icon-card {
    width: 84px;
    height: 84px;
  }

  .app-name {
    font-size: 0.72rem;
  }

  .apps-marquee__caption {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    bottom: 14px;
  }

  /* ===== App section Mobile Redesign ===== */
  .app-section {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .app-section__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Visual edge-to-edge, quebrando o padding do container */
  .app-section__visual {
    order: 0;
    margin: 0 -14px;
    width: calc(100% + 28px);
  }

  .app-section__copy {
    order: 1;
    text-align: center;
    justify-items: center;
    gap: 16px;
    padding-top: 28px;
  }

  .app-section__stores {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .app-section__stores > * {
    width: 100%;
  }

  /* Phone visual: crop na imagem landscape para mostrar o celular */
  .phone-visual {
    min-height: auto;
    height: min(82vw, 340px);
    width: 100%;
    overflow: hidden;
    padding: 0;
  }

  /* Zoom centralizado no celular + fade na base para fundir com o fundo */
  .phone-visual__img {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: center 38%;
    mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 100%);
  }

  .phone-visual__halo {
    display: none;
  }

  /* ===== Coverage — ordem: texto → mapa → regiões → CTA ===== */
  .coverage-section {
    padding: 40px 0 48px;
  }

  /* Flex-column para controlar ordem individual */
  .coverage-section__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Dissolve wrappers; filhos viram itens diretos do flex */
  .coverage-section__map,
  .coverage-section__copy {
    display: contents;
  }

  /* 1º — Título e descrição */
  .coverage-section__copy > h2 {
    order: 0;
    text-align: center;
    align-self: center;
  }

  .coverage-section__copy > p {
    order: 1;
    text-align: center;
    align-self: center;
    margin: 0 auto;
  }

  /* 2º — Mapa SVG */
  .coverage-map-artwork {
    order: 2;
    width: 100%;
    max-width: 420px;
    align-self: center;
    margin: 0 auto;
  }

  /* 3º — Área de atendimento */
  .coverage-region-list {
    order: 3;
    padding: 16px;
    text-align: center;
    width: 100%;
  }

  .coverage-region-list div {
    justify-content: center;
  }

  .coverage-region-list span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.85rem;
  }

  /* 4º — CTA (botão WhatsApp) */
  .coverage-cta {
    order: 4;
    /* Remove posicionamento absoluto do desktop */
    position: static !important;
    transform: none !important;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    text-align: center;
    width: 100%;
  }

  .coverage-cta > div {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .coverage-cta .button--primary {
    width: 100%;
  }

  /* ===== WiFi hero (caixa de preço) — reescrita limpa ===== */
  .wifi-hero-section {
    min-height: auto;
    padding: 40px 12px 56px;
    margin-top: -24px;
    border-radius: 28px 28px 0 0;
    justify-content: flex-start;
  }

  .wifi-hero-section::after {
    height: 120px;
  }

  .wifi-hero-bg-circle {
    width: 320px;
    height: 480px;
    top: -40px;
    right: -120px;
    filter: blur(36px);
  }

  .wifi-hero-bg-tech {
    width: 60%;
  }

  .wifi-hero-mini-card {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 16px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.88);
  }

  .wifi-hero-mini-emoji {
    font-size: 22px;
  }

  .wifi-hero-mini-text {
    font-size: 13px;
  }

  .wifi-hero-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding-top: 0;
  }

  .wifi-hero-house {
    width: 70%;
    max-width: 280px;
    margin: 0 auto;
  }

  .wifi-hero-card {
    width: 100%;
    max-width: 420px;
    margin: -36px auto 0;
    border-width: 8px;
    border-radius: 18px;
  }

  .wifi-hero-card-top {
    padding: 14px 16px 10px;
  }

  .hero-typewriter-wrap {
    font-size: 18px;
    min-height: 22px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .wifi-hero-big-title {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .wifi-hero-badge {
    right: -24px;
    bottom: 8px;
    min-width: 48px;
    height: 22px;
    font-size: 14px;
  }

  .wifi-hero-card-bottom {
    padding: 18px 18px 20px;
  }

  .wifi-hero-offer-wrap {
    gap: 10px;
    margin-bottom: 8px;
  }

  .wifi-hero-offer-line {
    width: 4px;
    height: 38px;
  }

  .wifi-hero-main {
    font-size: 17px;
  }

  .wifi-hero-highlight {
    font-size: 18px;
  }

  .wifi-hero-price {
    gap: 2px;
    margin-bottom: 16px;
  }

  .wifi-hero-rs {
    font-size: 15px;
    margin-right: 2px;
    margin-bottom: 10px;
  }

  .wifi-hero-value {
    font-size: 64px;
    line-height: 0.84;
  }

  .wifi-hero-cents {
    font-size: 22px;
    margin-bottom: 26px;
  }

  .wifi-hero-month {
    font-size: 14px;
    margin-left: -18px;
    margin-bottom: 12px;
  }

  .wifi-hero-button {
    width: 100%;
    max-width: 280px;
    padding: 12px 14px;
    font-size: 15px;
  }

  /* ===== Commercial section ===== */
  .commercial-section {
    padding-top: 8px;
  }

  .commercial-section__card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: 26px;
  }

  .commercial-section__copy {
    text-align: center;
    justify-items: center;
    gap: 16px;
  }

  .commercial-section__points {
    text-align: left;
    width: 100%;
    max-width: 360px;
  }

  .promo-artwork {
    min-height: 240px;
    border-radius: 22px;
  }

  .promo-artwork__glow {
    width: 220px;
    height: 220px;
    right: -8%;
  }

  .promo-artwork__house {
    left: 8%;
    top: 16%;
    transform: scale(0.7);
    transform-origin: left top;
  }

  .promo-artwork__card {
    left: 38%;
    right: 6%;
    top: 22%;
    width: auto;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .promo-artwork__card strong {
    font-size: 1.6rem;
  }

  .promo-artwork__card b {
    font-size: 1.2rem;
  }

  .promo-artwork__card p {
    font-size: 0.85rem;
  }

  /* ===== FAQ ===== */
  .faq-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .faq-section__watermark {
    font-size: clamp(2.8rem, 14vw, 5rem);
    top: 14px;
  }

  .faq-section__heading {
    margin-bottom: 24px;
  }

  .faq-section__layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-section__column {
    gap: 10px;
  }

  .accordion-item {
    border-radius: 16px;
  }

  .accordion-item__trigger {
    padding: 14px 16px;
    gap: 10px;
  }

  .accordion-item__num {
    font-size: 0.82rem;
  }

  .accordion-item__question {
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .accordion-item__body p {
    padding: 0 16px 0 46px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .faq-cta-card {
    padding: 20px;
    border-radius: 18px;
  }

  .faq-cta-card strong {
    font-size: 0.98rem;
  }

  .faq-section__highlights {
    padding: 16px;
    gap: 8px;
    margin-top: 24px;
    border-radius: 16px;
  }

  .faq-section__highlights span {
    font-size: 0.78rem;
    padding: 0 12px;
    min-height: 34px;
  }

  /* ===== Contact ===== */
  .contact-section {
    padding-top: 24px;
  }

  .contact-section__heading {
    margin-bottom: 20px;
  }

  .contact-channels {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 480px;
  }

  .contact-channels a {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .contact-channels span {
    white-space: normal;
    font-size: 0.88rem;
  }

  .contact-map {
    border-radius: 20px;
    margin-bottom: 14px;
  }

  .contact-map-iframe {
    height: 240px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-card {
    padding: 18px;
    border-radius: 20px;
    gap: 8px;
  }

  .contact-card h3 {
    font-size: 0.95rem;
  }

  .contact-card p,
  .contact-card span {
    font-size: 0.86rem;
  }

  .contact-section__cta {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    text-align: center;
    border-radius: 22px;
  }

  .contact-section__cta strong {
    font-size: 1.05rem;
  }

  .contact-section__cta .button {
    width: 100%;
    justify-self: center;
  }

  /* ===== Footer ===== */
  .site-footer__body {
    gap: 14px;
    padding: 20px 0 16px;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
  }

  .site-footer__nav a {
    font-size: 0.76rem;
    padding: 4px 8px;
  }

  /* ===== Chat FAB ===== */
  .chat-fab {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 14px;
  }

  /* Light stage: raio menor, espaço mais limpo */
  .light-stage {
    border-radius: 28px 28px 0 0;
    margin-top: -20px;
    padding-top: 32px;
  }

  /* Ticker */
  .ticker-divider__item {
    padding: 0 14px;
    font-size: 1.1rem;
  }
}

/* ---------- MOBILE pequeno (<=480px) — iPhone SE e afins ---------- */
@media (max-width: 480px) {
  :root {
    --container-width: min(calc(100vw - 20px), 1180px);
    --header-height: 56px;
  }

  .header__inner {
    height: 56px;
    padding: 0 12px;
  }

  .header__logo img {
    max-width: min(72px, 22vw);
    max-height: 32px;
  }

  .hero-section {
    padding-top: 0;
    padding-bottom: 28px;
  }

  .hero-section__background {
    height: 100%;
    inset: 0;
  }

  .hero-section::before {
    height: 100%;
    inset: 0;
  }

  .hero-section__background-image {
    object-position: center 20%;
  }

  .container {
    padding: 0 12px;
  }

  .section-shell--dark,
  .section-shell--light {
    padding: 28px 0;
  }

  .hero-section h1,
  .section-heading h2,
  .benefits-section h2,
  .app-section h2,
  .coverage-section h2,
  .commercial-section h2,
  .client-area-section h2,
  .faq-section h2,
  .contact-section h2 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .hero-section__highlights {
    gap: 8px;
  }

  .hero-highlight {
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 12px;
    min-height: 76px;
  }

  .hero-highlight__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero-highlight__icon svg {
    width: 22px;
    height: 22px;
  }

  .button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  /* Plans: carrossel de 1 card centralizado */
  .plano-card {
    max-width: 280px;
    flex: 0 0 calc(100vw - 96px);
  }

  .plano-velocidade {
    font-size: 80px;
  }

  .toggle-btn {
    font-size: 0.73rem;
    padding: 9px 6px;
  }

  /* WiFi hero compacto */
  .wifi-hero-big-title {
    font-size: 44px;
    letter-spacing: -1.5px;
  }

  .wifi-hero-badge {
    right: -18px;
    min-width: 40px;
    font-size: 12px;
  }

  .wifi-hero-value {
    font-size: 52px;
  }

  .wifi-hero-cents {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .wifi-hero-month {
    font-size: 13px;
    margin-left: -12px;
    margin-bottom: 8px;
  }

  .wifi-hero-rs {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .hero-typewriter-wrap {
    font-size: 15px;
  }

  .wifi-hero-main {
    font-size: 15px;
  }

  .wifi-hero-highlight {
    font-size: 16px;
  }

  /* Promo artwork: empilha casa e cartão */
  .promo-artwork {
    min-height: 220px;
  }

  .promo-artwork__house {
    transform: scale(0.58);
  }

  .promo-artwork__card {
    left: 36%;
    right: 6%;
    top: 24%;
    padding: 12px;
  }

  .promo-artwork__card strong {
    font-size: 1.3rem;
  }

  .promo-artwork__card b {
    font-size: 1rem;
  }

  /* Client area: cards em 1 coluna */
  .client-area-grid {
    grid-template-columns: 1fr;
  }

  .client-action-card {
    min-height: auto;
    padding: 14px;
  }

  /* Canais card + streamings */
  .canais-card__text {
    font-size: 0.98rem;
  }

  .canais-card__text em,
  .canais-card__text span {
    font-size: 1.25rem;
  }

  .app-icon-card {
    width: 72px;
    height: 72px;
  }

  /* Phone visual: ajuste de altura em telas pequenas */
  .phone-visual {
    height: min(78vw, 300px);
  }

  /* Apps marquee gap ainda menor em telas pequenas */
  .apps-marquee__track {
    gap: 4px;
  }

  /* Store buttons menores */
  .store-btn {
    min-height: 52px;
    padding: 0 16px;
    gap: 10px;
  }

  /* FAQ ainda mais enxuto */
  .accordion-item__body p {
    padding-left: 42px;
    font-size: 0.84rem;
  }

  .faq-section__highlights span {
    font-size: 0.74rem;
    min-height: 32px;
    padding: 0 10px;
  }

  /* Contact */
  .contact-map-iframe {
    height: 220px;
  }

  .contact-section__cta {
    padding: 16px;
  }

  /* Chat fab */
  .chat-fab {
    width: 44px;
    height: 44px;
    bottom: 14px;
    right: 12px;
  }
}

/* ---------- MOBILE ultra-pequeno (<=360px) ---------- */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-highlight {
    grid-template-columns: 40px 1fr;
    padding: 10px;
  }

  .hero-highlight__icon {
    width: 40px;
    height: 40px;
  }

  .plano-velocidade {
    font-size: 68px;
    letter-spacing: -3px;
  }

  .wifi-hero-big-title {
    font-size: 38px;
  }

  .wifi-hero-value {
    font-size: 44px;
  }

  .wifi-hero-card {
    border-width: 6px;
  }
}

/* ============================================================
   MOBILE FIX PACK — ROUND 2 (2026-04-20)
   scroll-margin-top · dropdown · chat modal
   ONLY affects ≤768px — desktop untouched
   ============================================================ */

/* 1 ── scroll-margin-top: header on mobile is 60px, not 120px */
@media (max-width: 768px) {
  .section-shell {
    scroll-margin-top: 72px;
  }
}

/* 2 ── plans-region-dropdown: prevent off-screen clipping on narrow viewports */
@media (max-width: 768px) {
  .plans-region-dropdown {
    left: auto;
    right: 0;
    transform: none;
    min-width: min(220px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  @keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
  }
}

/* 3 ── chat modal: tighter padding + prevent window overflow on small screens */
@media (max-width: 480px) {
  .chat-modal {
    padding: 80px 14px 24px;
    align-items: flex-start;
  }

  .chat-window {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
  }
}

/* ============================================================
   CLIENT AREA — Reorder + image fade + cards over image
   Ordem desejada: h2 → p → foto(fade) → cards sobrepostos
   display:contents dissolve wrappers; order controla posição
   ============================================================ */
@media (max-width: 768px) {
  /* Flex-column para controlar order de cada filho */
  .client-area-section__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  /* Dissolve os dois wrappers — filhos viram itens diretos do flex */
  .client-area-section__copy,
  .client-area-section__visual {
    display: contents;
  }

  /* 1º — Título */
  .client-area-section__copy > h2 {
    order: 0;
    text-align: center;
    margin-bottom: 10px;
  }

  /* 2º — Descrição */
  .client-area-section__copy > p {
    order: 1;
    text-align: center;
    margin: 0 auto 20px;
    max-width: 88%;
  }

  /* 3º — Foto da cliente (altura controlada + fade na base) */
  .client-area-section__visual > .customer-artwork {
    order: 2;
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center 5%;
    border-radius: 20px 20px 0 0;
    display: block;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }

  /* 4º — Cards sobrepostos na base da foto */
  .client-area-section__copy > .client-area-grid {
    order: 3;
    margin-top: -44px;
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-action-card {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06), 0 6px 20px rgba(0, 0, 0, 0.07);
  }
}
