:root {
  --bg: #06101f;
  --bg-2: #091632;
  --primary: #0f6fff;
  --primary-2: #28a8ff;
  --cyan: #59e1ff;
  --text: #f5f8ff;
  --text-soft: #b7c6ea;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(17, 113, 255, 0.2), transparent 35%),
    radial-gradient(circle at bottom right, rgba(60, 180, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #06101f 0%, #071126 40%, #091632 100%);
  color: var(--text);
  overflow-x: hidden;
}

img,
section,
div,
article,
a,
button {
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -3;
  opacity: 0.55;
  pointer-events: none;
}

.blur-1 {
  width: 320px;
  height: 320px;
  background: rgba(31, 118, 255, 0.45);
  top: -70px;
  left: -70px;
}

.blur-2 {
  width: 420px;
  height: 420px;
  background: rgba(22, 178, 255, 0.22);
  right: -120px;
  top: 220px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 80%);
  pointer-events: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(5, 12, 28, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
.logo-dn {
  width: 44px;
  height: 44px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 1rem;
  color: #fff;

  /* FUNDO MODERNO */
  background: linear-gradient(135deg, #0f6fff, #28a8ff);

  /* BORDA GLASS */
  border: 1px solid rgba(255, 255, 255, 0.15);

  /* SOMBRA */
  box-shadow:
    0 10px 30px rgba(0, 110, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  /* EFEITO SUAVE */
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.logo-dn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 15px 40px rgba(0, 140, 255, 0.6),
    0 0 20px rgba(0, 170, 255, 0.4);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}


.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5f8ff;
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.menu-toggle .bar {
  width: 24px;
  height: 2.8px;
  border-radius: 999px;
  background: #fff;
  transition: 0.3s ease;
}

.hero {
  padding: 90px 0 70px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 36px;
  min-height: 70vh;
}

.tag,
.mini-title {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(26, 118, 255, 0.12);
  border: 1px solid rgba(88, 170, 255, 0.18);
  color: #cbe7ff;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 18px;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #ffffff, #7dd9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  max-width: 640px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 40px rgba(16, 104, 255, 0.33);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  min-width: 0;
}

.stat strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.stat span {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wifi-card {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wifi-ring {
  position: absolute;
  border-radius: 999px;
  border-top: 18px solid rgba(72, 131, 255, 0.95);
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 18px solid transparent;
  transform: rotate(180deg);
  filter: drop-shadow(0 10px 25px rgba(34, 121, 255, 0.35));
}

.ring-1 {
  width: 290px;
  height: 290px;
}

.ring-2 {
  width: 210px;
  height: 210px;
}

.ring-3 {
  width: 130px;
  height: 130px;
}

.wifi-dot {
  position: absolute;
  bottom: 110px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #52c7ff, #326bff);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(72, 131, 255, 0.14),
    0 0 40px rgba(72, 131, 255, 0.4);
}

.router {
  position: absolute;
  bottom: 26px;
  width: 220px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f6f8fd, #cfd6df);
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.24);
}

.antenna {
  position: absolute;
  width: 6px;
  height: 100px;
  background: linear-gradient(180deg, #d8dde7, #959ca8);
  top: -84px;
  border-radius: 999px;
}

.antenna.left {
  left: 36px;
  transform: rotate(-34deg);
}

.antenna.right {
  right: 36px;
  transform: rotate(34deg);
}

.beneficios,
.planos,
.contato {
  padding: 92px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-soft);
  line-height: 1.8;
  margin: 0;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.beneficio-card {
  width: 100%;
  min-width: 0;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.beneficio-card:hover {
  transform: translateY(-8px);
}

.icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 20px;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    rgba(38, 123, 255, 0.25),
    rgba(67, 219, 255, 0.2)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.beneficio-card h3 {
  font-size: 1.16rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.beneficio-card p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 0;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.plano-card {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 48, 0.95),
    rgba(11, 28, 61, 0.92)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.plano-card:hover {
  transform: translateY(-10px);
}

.plano-card.destaque {
  border: 1px solid rgba(91, 177, 255, 0.4);
  box-shadow: 0 30px 70px rgba(11, 111, 255, 0.25);
}

.melhor-oferta {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #31c3ff, #136dff);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.plano-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d7e5ff;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.plano-card h3 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.plano-desc {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.93rem;
  min-height: 76px;
  margin-top: 0;
  margin-bottom: 0;
}

.preco-box {
  margin: 22px 0 18px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.preco-box small {
  display: block;
  color: var(--text-soft);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preco-box strong {
  font-size: 2rem;
  line-height: 1;
}

.plano-lista {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.plano-lista li {
  position: relative;
  padding-left: 22px;
  color: #d5e2ff;
  font-size: 0.93rem;
}

.plano-lista li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4ed2ff;
  font-size: 1.2rem;
  line-height: 1;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contato-card {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 48, 0.95),
    rgba(11, 28, 61, 0.92)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
  color: var(--text);
}

.contato-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 170, 255, 0.35);
}

.contato-card,
.contato-card * {
  max-width: 100%;
}

.contato-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  border-radius: 20px;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    rgba(38, 123, 255, 0.25),
    rgba(67, 219, 255, 0.2)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contato-card h3 {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.contato-card p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 14px;
}

.contato-card span {
  display: inline-block;
  color: #7dd9ff;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, #13a3ff, #0b69ff);
  box-shadow: 0 20px 40px rgba(11, 105, 255, 0.35);
  z-index: 999;
}

@media (max-width: 1100px) {
  .hero-wrap,
  .beneficios-grid,
  .planos-grid,
  .contato-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(8, 18, 43, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
    padding: 14px 14px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contato-card {
    width: 100%;
    min-width: 0;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .contato-card h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .contato-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .contato-card span {
    display: block;
    font-size: 0.95rem;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contato-icon {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}

@media (max-width: 640px) {@media (max-width: 640px) {
  .logo-img {
    width: 28px;
    height: 28px;
    margin-left: 10px;
  }

  .logo-text strong {
    font-size: 0.82rem;
  }

  .logo-text small {
    font-size: 0.58rem;
  }
}}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* DN ESTILIZADO */
.logo-dn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 1rem;
  color: white;

  background: linear-gradient(135deg, #0f6fff, #28a8ff);
  box-shadow: 0 10px 25px rgba(0, 110, 255, 0.4);
}

/* TEXTO */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 0.95rem;
  color: #fff;
}

.logo-text small {
  font-size: 0.65rem;
  color: #b7c6ea;
}
@media (max-width: 640px) {
  .logo-dn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .logo-text strong {
    font-size: 0.8rem;
  }

  .logo-text small {
    font-size: 0.55rem;
  }
}
@media (max-width: 640px) {
  .logo-dn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    border-radius: 12px;
  }
}
/* =========================
   AJUSTES GERAIS MOBILE
========================= */
html,
body {
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-wrap,
  .beneficios-grid,
  .planos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .nav {
    min-height: 72px;
    position: relative;
    gap: 12px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 70%;
  }

  .logo-dn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .logo-text {
    line-height: 1;
  }

  .logo-text strong {
    font-size: 0.88rem;
  }

  .logo-text small {
    font-size: 0.58rem;
    line-height: 1.2;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    margin-left: auto;
  }

  .menu-toggle .bar {
    width: 22px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(8, 18, 43, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    z-index: 10000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 14px;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .hero {
    padding: 32px 0 26px;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
  }

  .hero-text {
    text-align: left;
  }

  .tag,
  .mini-title {
    font-size: 0.78rem;
    padding: 8px 12px;
    margin-bottom: 14px;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 14px;
    word-break: break-word;
  }

  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    word-break: break-word;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .btn,
  .btn-primary,
  .btn-outline,
  .btn-full {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.92rem;
    border-radius: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .stat {
    padding: 14px;
    border-radius: 14px;
  }

  .stat strong {
    font-size: 0.92rem;
  }

  .stat span {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .hero-visual {
    display: none;
  }

  .beneficios,
  .planos,
  .contato {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-head h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    word-break: break-word;
  }

  .section-head p {
    font-size: 0.95rem;
    line-height: 1.7;
    word-break: break-word;
  }

  .beneficios-grid,
  .planos-grid,
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .beneficio-card,
  .plano-card,
  .contato-card {
    width: 100%;
    min-width: 0;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .icon,
  .contato-icon {
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .beneficio-card h3,
  .contato-card h3 {
    font-size: 1.1rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .beneficio-card p,
  .contato-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    word-break: break-word;
  }

  .contato-card span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .plano-badge {
    font-size: 0.74rem;
    padding: 7px 10px;
    margin-bottom: 12px;
  }

  .plano-card h3 {
    font-size: 1.7rem;
    line-height: 1.15;
    word-break: break-word;
  }

  .plano-desc {
    min-height: auto;
    font-size: 0.92rem;
    line-height: 1.65;
    word-break: break-word;
  }

  .preco-box {
    padding: 14px;
    margin: 18px 0 16px;
    border-radius: 16px;
  }

  .preco-box small {
    font-size: 0.74rem;
  }

  .preco-box strong {
    font-size: 1.7rem;
    line-height: 1.1;
    word-break: break-word;
  }

  .plano-lista {
    gap: 10px;
    margin-bottom: 18px;
  }

  .plano-lista li {
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-word;
  }

  .melhor-oferta {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 12px;
    bottom: 12px;
    font-size: 1.2rem;
  }
}

/* =========================
   CELULARES PEQUENOS
========================= */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav {
    min-height: 68px;
  }

  .logo {
    max-width: 72%;
    gap: 8px;
  }

  .logo-dn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  .logo-text strong {
    font-size: 0.8rem;
  }

  .logo-text small {
    font-size: 0.52rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .hero {
    padding: 26px 0 20px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text p,
  .section-head p,
  .beneficio-card p,
  .plano-desc,
  .contato-card p {
    font-size: 0.9rem;
  }

  .section-head h2 {
    font-size: 1.55rem;
  }

  .beneficio-card,
  .plano-card,
  .contato-card {
    padding: 18px 14px;
  }

  .preco-box strong {
    font-size: 1.55rem;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.08rem;
  }
}