/* QualyFibra — site visual com imagens da marca */
:root {
  --bg: #070707;
  --bg-soft: #0f0f0f;
  --bg-card: #141414;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --text-muted: #a8a8a8;
  --red: #e10600;
  --red-bright: #ff1a1a;
  --red-glow: rgba(225, 6, 0, 0.45);
  --purple: #b44dff;
  --whatsapp: #25d366;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --container: 1140px;
  --header-h: 76px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}

.header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 7, 7, 0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--red-glow));
}

.logo__text span {
  color: var(--red-bright);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--red), #ff3b3b);
  color: #fff;
  margin-left: 0.25rem;
  box-shadow: 0 6px 20px var(--red-glow);
}

.nav__link--cta:hover {
  color: #fff;
  filter: brightness(1.08);
  background: linear-gradient(135deg, var(--red), #ff3b3b);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 20% 50%, rgba(7, 7, 7, 0.2), transparent 60%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.75) 45%, rgba(7, 7, 7, 0.55) 100%),
    radial-gradient(ellipse 50% 50% at 80% 40%, rgba(225, 6, 0, 0.25), transparent 60%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero__eyebrow,
.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.9rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ff4d4d 0%, #ff1a1a 45%, #ff8a8a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero__subtitle strong {
  color: #fff;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.25rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.stat span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero__glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.4), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.hero__mascot {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__logo-float {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: 120px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 12px 30px rgba(225, 6, 0, 0.55));
  animation: floatY 3.5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Wordmark bar */
.wordmark-bar {
  background: #000;
  border-block: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.wordmark-bar__img {
  height: 56px;
  width: auto;
  max-width: min(100%, 720px);
  object-fit: contain;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s, background 0.2s, border-color 0.2s;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--red), #ff3333);
  color: #fff;
  box-shadow: 0 10px 30px var(--red-glow);
}

.btn--primary:hover {
  filter: brightness(1.1);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--red-bright);
  background: rgba(225, 6, 0, 0.1);
}

.btn--full {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.section__text {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section__text--center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-2--reverse > :first-child {
  order: 2;
}

.grid-2--reverse > :last-child {
  order: 1;
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plans--five,
.plans--six {
  grid-template-columns: repeat(3, 1fr);
}

.plan__after {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: -0.35rem 0 1rem;
}

.plan__after strong {
  color: #ffb4b4;
  font-weight: 700;
}

.tv-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 211, 166, 0.45);
  background:
    linear-gradient(135deg, rgba(34, 211, 166, 0.14), rgba(225, 6, 0, 0.1) 55%, rgba(20, 20, 20, 0.95));
  box-shadow: 0 12px 36px rgba(34, 211, 166, 0.12);
}

.tv-banner__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.tv-banner__body {
  flex: 1;
  min-width: 220px;
}

.tv-banner__body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #5dffc8;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.tv-banner__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tv-banner__body b {
  color: var(--text);
  font-weight: 700;
}

.tv-banner__pill {
  flex-shrink: 0;
  background: linear-gradient(135deg, #22d3a6, #0ea5e9);
  color: #041018;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.plans-highlight {
  margin-top: 1.75rem;
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(34, 211, 166, 0.4);
  background: linear-gradient(135deg, rgba(34, 211, 166, 0.12), rgba(225, 6, 0, 0.12), rgba(20, 20, 20, 0.9));
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: center;
}

.plans-highlight strong {
  color: #5dffc8;
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.plan {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: var(--shadow);
  z-index: 2;
}


.plan--featured {
  border-color: rgba(225, 6, 0, 0.55);
  background:
    linear-gradient(180deg, rgba(225, 6, 0, 0.14), transparent 45%),
    var(--bg-card);
  box-shadow: 0 16px 40px var(--red-glow);
}

.plan--tv {
  border-color: rgba(34, 211, 166, 0.4);
  background:
    linear-gradient(180deg, rgba(34, 211, 166, 0.1), transparent 42%),
    var(--bg-card);
}

.plan--tv:hover {
  border-color: rgba(34, 211, 166, 0.65);
  box-shadow: 0 16px 40px rgba(34, 211, 166, 0.18);
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), #ff4444);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__badge--tv {
  background: linear-gradient(135deg, #22d3a6, #0ea5e9);
  color: #041018;
}

.plan__tv-free {
  margin: -0.35rem 0 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #041018;
  background: linear-gradient(135deg, #5dffc8, #22d3a6);
  width: fit-content;
  max-width: 100%;
}

.plan__list li.is-tv {
  color: #9af5d8;
  font-weight: 600;
}

.plan__list li.is-tv strong {
  color: #5dffc8;
  font-weight: 800;
}

.plan__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.plan__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px;
}

.plan__tag {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
}

.plan--featured .plan__tag {
  color: var(--red-bright);
}

.plan__speed {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.plan__speed span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 0.2rem;
}

.plan__price-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
  flex-wrap: nowrap;
  min-height: 0;
}

.plan__price {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.1;
}

.plan__price-row .plan__price {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}

/* vídeo ao lado do preço — 3x do tamanho base (56 → 168) */
video.plan__price-video {
  box-sizing: border-box !important;
  width: 168px !important;
  height: 168px !important;
  max-width: 168px !important;
  max-height: 168px !important;
  min-width: 168px !important;
  min-height: 168px !important;
  flex: 0 0 168px !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: #0a0a0a !important;
  pointer-events: none !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: middle !important;
}

.plan__price strong {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #fff;
  font-weight: 800;
}

.plan__price span {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
}

.plan__price small {
  font-size: 1.05rem;
  margin-left: 0.1rem;
}

.plan__list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  flex: 1;
}

.plan__list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.45;
}

.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-bright);
  font-weight: 800;
}

.plans__note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* botão dos planos um pouco maior */
.plan .btn {
  font-size: 1.05rem;
  padding: 0.95rem 1.25rem;
}

/* Photo frames */
.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
}

.photo-frame__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.photo-frame--promo .photo-frame__img,
.photo-frame:not(.photo-frame--wide) .photo-frame__img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-frame--wide .photo-frame__img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-frame__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: 0.9rem;
}

.photo-frame__badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Features */
.features--stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.feature__icon {
  font-size: 1.25rem;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(225, 6, 0, 0.12);
  border-radius: 12px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Promo cards */
.promo-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.promo-card {
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.promo-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.promo-card span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.promo-card--hot {
  border-color: rgba(225, 6, 0, 0.45);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.18), rgba(20, 20, 20, 0.9));
}

.promo-card--hot strong {
  color: #ffd166;
}

/* Infra */
.section--infra {
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(225, 6, 0, 0.12), transparent 60%),
    var(--bg);
}

.infra-logo {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.infra-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.infra-logo strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.infra-logo span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  cursor: zoom-in;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.gallery__item:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--tall img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.gallery__item figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

/* Instagram */
.ig-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.ig-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.ig-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af 80%, #515bd4);
  box-shadow: 0 10px 28px rgba(221, 42, 123, 0.35);
}

.ig-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ig-card__handle {
  font-weight: 700;
  color: var(--text) !important;
  margin-bottom: 0.5rem !important;
}

.ig-card p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.ig-card__actions {
  display: grid;
  gap: 0.75rem;
}

.btn--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af);
  color: #fff;
  box-shadow: 0 10px 28px rgba(221, 42, 123, 0.3);
}

.btn--instagram:hover {
  filter: brightness(1.08);
}

.ig-embed-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.ig-embed-wrap blockquote {
  margin: 0 !important;
}

/* Localização / mapa */
.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.25rem;
  align-items: stretch;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.location-card__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 0 12px var(--red-glow));
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.location-card__address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.location-card__links {
  display: grid;
  gap: 0.7rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  box-shadow: var(--shadow);
  background: #111;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* CTA */
.cta {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(225, 6, 0, 0.28), transparent 60%),
    var(--bg-soft);
  border-block: 1px solid var(--border);
  text-align: center;
}

.cta__logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 18px var(--red-glow));
}

.cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin-bottom: 0.65rem;
}

.cta__inner p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

/* Contact */
.contact-visual {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-visual__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(225, 6, 0, 0.5);
  box-shadow: 0 0 24px var(--red-glow);
}

.contact-info {
  display: grid;
  gap: 0.75rem;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

a.contact-info__item:hover {
  border-color: rgba(225, 6, 0, 0.5);
}

.contact-info__item strong {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red-bright);
}

.contact-info__item span {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Cadastro chips */
.cadastro-plans {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 1.5rem;
}

.cadastro-plan-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.cadastro-plan-chip:hover {
  border-color: rgba(225, 6, 0, 0.5);
  background: rgba(225, 6, 0, 0.08);
  transform: translateX(3px);
}

.cadastro-plan-chip strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--red-bright);
}

.cadastro-plan-chip span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Form */
.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: grid;
  gap: 0.95rem;
  box-shadow: var(--shadow);
}

.form__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.form__group select.is-highlight {
  border-color: rgba(225, 6, 0, 0.7);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.2);
}

.form__group {
  display: grid;
  gap: 0.35rem;
}

.form__group label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form__group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a8a8a8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__group select option {
  background: #111;
  color: #fff;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: rgba(225, 6, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.15);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(168, 168, 168, 0.55);
}

.form__group textarea {
  resize: vertical;
  min-height: 90px;
}

.form__hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  gap: 1.25rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--red-bright);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 900px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}

.lightbox__close:hover {
  opacity: 1;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.12s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.28s; }
.fade-up:nth-child(5) { animation-delay: 0.36s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .plans--five,
  .plans--six {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero__grid,
  .grid-2,
  .plans,
  .plans--five,
  .plans--six,
  .ig-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }


  .grid-2--reverse > :first-child,
  .grid-2--reverse > :last-child {
    order: initial;
  }

  .hero__visual {
    min-height: auto;
    order: -1;
  }

  .hero__mascot {
    width: min(100%, 360px);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item--tall img {
    aspect-ratio: 3 / 4;
    height: auto;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav__link--cta {
    margin-left: 0;
    text-align: center;
  }

  .menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.5rem);
  }

  .wordmark-bar__img {
    height: 42px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__logo-float {
    width: 88px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 280px;
  }
}

/* ===== Celular: letras dos planos bem maiores ===== */
@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
  }

  .section__text {
    font-size: 1.08rem;
  }

  .plan {
    padding: 1.75rem 1.35rem;
  }

  .plan__badge {
    font-size: 0.95rem;
    padding: 0.45rem 1rem;
  }

  .plan__tag {
    font-size: 1.1rem;
  }

  .plan__speed {
    font-size: 3.1rem;
  }

  .plan__speed span {
    font-size: 1.35rem;
  }

  .plan__price {
    font-size: 1.35rem;
  }

  .plan__price strong {
    font-size: 3.4rem;
  }

  .plan__price span {
    font-size: 1.55rem;
  }

  .plan__price small {
    font-size: 1.15rem;
  }

  .plan__after {
    font-size: 1.15rem;
  }

  .plan__tv-free {
    font-size: 1.08rem;
    padding: 0.55rem 0.95rem;
  }

  .plan__list li {
    font-size: 1.18rem;
    line-height: 1.5;
    padding-left: 1.55rem;
  }

  .plan__list {
    gap: 0.8rem;
  }

  .plan .btn {
    font-size: 1.15rem;
    padding: 1.05rem 1.25rem;
  }

  .plans__note {
    font-size: 1.05rem;
  }

  .plans-highlight {
    font-size: 1.1rem;
  }

  .plans-highlight strong {
    font-size: 1.2rem;
  }

  /* vídeo legível no celular, sem ocupar o card todo */
  video.plan__price-video {
    width: 120px !important;
    height: 120px !important;
    max-width: 120px !important;
    max-height: 120px !important;
    min-width: 120px !important;
    min-height: 120px !important;
    flex: 0 0 120px !important;
  }

  .plan__price-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

@media (max-width: 400px) {
  .plan__speed {
    font-size: 2.75rem;
  }

  .plan__price strong {
    font-size: 3rem;
  }

  video.plan__price-video {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
    flex: 0 0 100px !important;
  }
}
