:root {
  --blue: #2446a8;
  --blue-dark: #061947;
  --blue-soft: #eff4ff;
  --red: #ef233c;
  --green: #31c85b;
  --green-dark: #1fac45;
  --text: #172033;
  --muted: #667085;
  --white: #ffffff;
  --border: #e5e9f2;
  --shadow: 0 24px 60px rgba(6, 25, 71, 0.12);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

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

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

.container {
  width: min(1220px, calc(100% - 64px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-primary,
.btn-cta {
  background: linear-gradient(135deg, var(--red), #ff5a5f);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(239, 35, 60, 0.25);
}

.btn-primary:hover,
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(239, 35, 60, 0.34);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border: 1px solid rgba(36, 70, 168, 0.18);
}

.btn-outline:hover {
  background: var(--blue-soft);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  padding: 12px 22px;
  box-shadow: 0 14px 30px rgba(49, 200, 91, 0.22);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* TOPO */

.top-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 233, 242, 0.9);
}

.header-content {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-area {
  flex-shrink: 0;
}

.logo-area img {
  width: 165px;
  height: auto;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-menu a {
  font-size: 15px;
  font-weight: 800;
  color: #344054;
  transition: 0.2s ease;
}

.main-menu a:hover {
  color: var(--red);
}

/* SELETOR DE CIDADE */

.city-selector {
  position: relative;
  z-index: 60;
  flex-shrink: 0;
}

.city-selector-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(36, 70, 168, 0.14);
  background: #ffffff;
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(6, 25, 71, 0.06);
  transition: 0.22s ease;
  white-space: nowrap;
}

.city-selector-btn:hover {
  border-color: rgba(239, 35, 60, 0.25);
  color: var(--red);
}

.city-selector-btn span {
  font-size: 12px;
  color: var(--red);
}

.city-selector-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 200px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(6, 25, 71, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s ease;
  z-index: 80;
}

.city-selector:hover .city-selector-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.city-selector-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.city-selector-menu a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(239, 35, 60, 0.10), transparent 32%),
    radial-gradient(circle at bottom left, rgba(36, 70, 168, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7f9ff);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36,70,168,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,70,168,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
}

.city-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(36, 70, 168, 0.12);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(6, 25, 71, 0.07);
}

.city-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239, 35, 60, 0.12);
}

.hero-text h1 {
  max-width: 660px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.8px;
  color: var(--blue-dark);
  font-weight: 900;
}

.hero-text p {
  max-width: 590px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 650px;
}

.hero-stats div {
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(229,233,242,0.92);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 35px rgba(6, 25, 71, 0.06);
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-image {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #11286d);
  box-shadow: 0 35px 90px rgba(36, 70, 168, 0.28);
}

.hero-image::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(36, 70, 168, 0.13);
}

.hero-image img {
  position: relative;
  z-index: 2;
  width: min(460px, 92%);
  filter: drop-shadow(0 28px 40px rgba(6, 25, 71, 0.25));
}

.hero-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(229,233,242,0.9);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 900;
}

.hero-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-top: 3px;
}

.speed-card {
  top: 46px;
  left: 20px;
}

.signal-card {
  right: 0;
  bottom: 70px;
}

/* BENEFÍCIOS */

.benefits {
  padding: 72px 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-item {
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 38px rgba(6, 25, 71, 0.06);
  transition: 0.25s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(6, 25, 71, 0.11);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 20px;
}

.benefit-item h3 {
  color: var(--blue-dark);
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.benefit-item p {
  color: var(--muted);
  font-size: 14px;
}

/* PLANOS */

.plans-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at top left, rgba(36, 70, 168, 0.13), transparent 34%),
    linear-gradient(180deg, #f7f9ff, #ffffff);
}

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

.section-title span,
.mini-title {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 900;
  margin-bottom: 10px;
}

.section-title h2,
.wifi-text h2,
.coverage-box h2,
.cta-box h2 {
  color: var(--blue-dark);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  font-weight: 900;
}

.section-title p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

/*
  PLANOS AUTOMÁTICOS:
  - 3 planos ficam centralizados e ocupam bem a largura.
  - 4 planos ficam lado a lado em telas grandes.
  - 5 ou mais quebram naturalmente para a próxima linha.
*/
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}

.plan-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(229,233,242,0.95);
  box-shadow: 0 22px 60px rgba(6, 25, 71, 0.10);
  padding: 26px;
  transition: 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(6, 25, 71, 0.15);
}

.plan-card.featured {
  border: 2px solid rgba(239, 35, 60, 0.55);
}

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

.popular-ribbon {
  position: absolute;
  top: 18px;
  right: -48px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 9px 52px;
  transform: rotate(35deg);
}

.plan-header {
  background: linear-gradient(135deg, var(--blue), #172f84);
  border-radius: 23px;
  padding: 25px 18px;
  text-align: center;
  color: var(--white);
  margin-bottom: 28px;
}

.plan-header h3 {
  font-size: clamp(34px, 3vw, 43px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  white-space: nowrap;
}

.plan-header span {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  margin-bottom: 27px;
  color: #3b3f48;
  min-width: 0;
}

.plan-price small {
  font-size: 16px;
  font-weight: 800;
  margin-top: 11px;
}

.plan-price strong {
  font-size: clamp(50px, 4vw, 62px);
  line-height: 0.9;
  letter-spacing: -3px;
  font-weight: 900;
}

.plan-price div {
  display: flex;
  flex-direction: column;
}

.plan-price div span {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.plan-price div small {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 25px;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
  color: #4b5565;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(49, 200, 91, 0.13);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}

.btn-plan {
  width: 100%;
  min-height: 48px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(49, 200, 91, 0.22);
  font-size: 14px;
  padding: 13px 16px;
}

.btn-plan:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* WI-FI */

.wifi-section {
  padding: 88px 0;
  background: var(--white);
}

.wifi-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.wifi-text p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  max-width: 610px;
}

.wifi-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
  max-width: 560px;
}

.wifi-list div {
  position: relative;
  background: #f7f9ff;
  border: 1px solid rgba(36, 70, 168, 0.10);
  border-radius: 16px;
  padding: 15px 15px 15px 44px;
  color: var(--blue-dark);
  font-weight: 900;
}

.wifi-list div::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wifi-image {
  position: relative;
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(36, 70, 168, 0.20), transparent 55%),
    linear-gradient(135deg, #f3f6ff, #ffffff);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wifi-image::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--blue);
  right: 24px;
  top: 34px;
}

.wifi-image img {
  position: relative;
  z-index: 2;
  width: min(390px, 90%);
  filter: drop-shadow(0 22px 34px rgba(6, 25, 71, 0.18));
}

/* COBERTURA */

.coverage-section {
  padding: 30px 0 88px;
  background: var(--white);
}

.coverage-box {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: center;
  border-radius: 34px;
  padding: 46px;
  background:
    radial-gradient(circle at top right, rgba(239, 35, 60, 0.15), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  box-shadow: 0 30px 80px rgba(6, 25, 71, 0.22);
}

.coverage-box h2 {
  color: var(--white);
}

.coverage-box p {
  margin-top: 15px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
}

.coverage-box .mini-title {
  color: #9be7ad;
}

.coverage-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.coverage-cities a,
.coverage-cities span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  color: var(--white);
  transition: 0.22s ease;
}

.coverage-cities a:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}

/* CTA */

.cta-section {
  padding: 0 0 90px;
  background: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px;
  border-radius: 30px;
  background: #f7f9ff;
  border: 1px solid rgba(36, 70, 168, 0.10);
}

.cta-box p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
}

/* HOME DE ESCOLHA DE CIDADE */

.city-home {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(239, 35, 60, 0.13), transparent 32%),
    radial-gradient(circle at bottom left, rgba(36, 70, 168, 0.20), transparent 36%),
    linear-gradient(135deg, #f7f9ff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.city-home-wrapper {
  width: min(980px, 100%);
}

.city-home-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 233, 242, 0.95);
  border-radius: 36px;
  box-shadow: 0 34px 90px rgba(6, 25, 71, 0.14);
  padding: 54px;
  text-align: center;
}

.city-home-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(36, 70, 168, 0.08);
  top: -180px;
  right: -120px;
}

.city-home-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(239, 35, 60, 0.08);
  bottom: -160px;
  left: -100px;
}

.city-home-logo,
.city-home-badge,
.city-home-card h1,
.city-home-card p,
.city-home-grid,
.city-home-footer {
  position: relative;
  z-index: 2;
}

.city-home-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.city-home-logo img {
  width: 190px;
  height: auto;
}

.city-home-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.city-home-card h1 {
  color: var(--blue-dark);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
}

.city-home-card > p {
  max-width: 650px;
  margin: 18px auto 34px;
  color: var(--muted);
  font-size: 17px;
}

.city-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.city-home-item {
  background: #ffffff;
  border: 1px solid rgba(36, 70, 168, 0.12);
  border-radius: 22px;
  padding: 24px 20px;
  text-align: left;
  box-shadow: 0 16px 38px rgba(6, 25, 71, 0.07);
  transition: 0.24s ease;
}

.city-home-item:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 35, 60, 0.28);
  box-shadow: 0 26px 60px rgba(6, 25, 71, 0.13);
}

.city-home-item span {
  display: block;
  color: var(--blue-dark);
  font-size: 21px;
  font-weight: 900;
}

.city-home-item small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
}

.city-home-footer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.city-home-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* RODAPÉ */

.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 42px;
}

.footer-about img {
  width: 180px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer h3 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 900;
}

.footer p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer a {
  color: rgba(255,255,255,0.82);
}

.footer a:hover {
  color: var(--white);
}

.footer strong {
  color: var(--white);
}

.footer-bottom {
  margin-top: 48px;
  padding: 18px 20px;
  text-align: center;
  background: rgba(0,0,0,0.22);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

/* RESPONSIVO */

@media (max-width: 1180px) {
  .main-menu {
    display: none;
  }

  .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .wifi-grid,
  .coverage-box {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 430px;
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-content {
    min-height: 82px;
    gap: 10px;
  }

  .logo-area img {
    width: 130px;
  }

  .city-selector-btn {
    padding: 10px 13px;
    font-size: 13px;
  }

  .city-selector-menu {
    right: -30px;
  }

  .btn-whatsapp {
    padding: 11px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 46px 0 54px;
  }

  .hero-text h1 {
    letter-spacing: -1.5px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-image::before {
    width: 300px;
    height: 300px;
  }

  .hero-image::after {
    width: 350px;
    height: 350px;
  }

  .hero-card {
    display: none;
  }

  .benefits {
    padding: 54px 0;
  }

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

  .plans-section,
  .wifi-section {
    padding: 64px 0;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .plan-card {
    padding: 24px;
    border-radius: 24px;
  }

  .plan-header h3 {
    font-size: 38px;
  }

  .plan-price strong {
    font-size: 58px;
  }

  .wifi-list {
    grid-template-columns: 1fr;
  }

  .coverage-box {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .coverage-cities {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .cta-box .btn {
    width: 100%;
  }

  .city-home-card {
    padding: 36px 22px;
    border-radius: 28px;
  }

  .city-home-logo img {
    width: 160px;
  }

  .city-home-card h1 {
    letter-spacing: -1.3px;
  }

  .city-home-grid {
    grid-template-columns: 1fr;
  }

  .city-home-item {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-content {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .logo-area {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .logo-area img {
    width: 145px;
  }

  .city-selector {
    order: 2;
  }

  .btn-whatsapp {
    order: 3;
  }

  .city-selector-menu {
    left: 50%;
    right: auto;
    transform: translate(-50%, 8px);
  }

  .city-selector:hover .city-selector-menu {
    transform: translate(-50%, 0);
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-actions .btn {
    width: 100%;
  }

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