:root {
  --blue: #073e9b;
  --blue-dark: #003891;
  --blue-card: #1557e6;
  --blue-card-2: #175be9;
  --green: #65c900;
  --green-dark: #50a900;
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.88);
  --line: rgba(101, 201, 0, 0.75);
  --shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Montserrat", Arial, sans-serif;
  color: var(--white);
  background: var(--blue);
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  margin: 10px;
  z-index: 1000;
  background: var(--white);
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 38px;
  padding: 10px 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  font-size: 14px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.section-line::after,
.footer__top {
  content: "";
  display: block;
  width: min(var(--container), calc(100% - 40px));
  height: 1px;
  margin: 70px auto 0;
  background: var(--line);
}

.section-title {
  display: inline-block;
  margin: 0 0 26px;
  color: var(--green);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.05;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--blue);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
}

.topbar {
  background: var(--green);
  min-height: 28px;
  font-size: 12px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 42px;
  min-height: 28px;
}

.navbar {
  background: var(--blue);
}

.navbar__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img,
.footer__brand img {
  width: 98px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.btn--header {
  min-width: 170px;
  min-height: 42px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
}

/* Hero */
.hero {
  min-height: 585px;
  background:
    radial-gradient(circle at 82% 42%, rgba(255, 255, 255, 0.13), transparent 20%),
    linear-gradient(180deg, #d8d9ea 0%, #807ebd 57%, #453f92 100%);
}

.hero__inner {
  min-height: 585px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
}

.hero__content {
  width: min(460px, 100%);
}

.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(48px, 7vw, 64px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero p {
  width: min(410px, 100%);
  margin: 0 0 30px;
  color: var(--text-soft);
  font-size: 16px;
}

/* Plans */
.plans {
  padding: 38px 0 10px;
  background: linear-gradient(180deg, #453f92 0%, var(--blue) 100%);
}

.plans__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  padding: 0 38px;
}

.plan-type {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 24px;
}

.plan-type__icon {
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
}

.plan-type__icon img {
  width: 48px;
}

.plan-type h2 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 700;
}

.plan-type p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

/* Company */
.company {
  padding: 78px 0 10px;
  background: var(--blue);
}

.company__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.company__text p {
  margin: 0 0 10px;
  color: var(--text-soft);
  text-align: justify;
  font-size: 16px;
}

.company__text .btn {
  margin-top: 26px;
}

.company__image {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  padding: 28px;
}

.company__image img {
  width: min(320px, 100%);
  opacity: 0.96;
}

/* Coverage */
.coverage {
  padding: 70px 0 10px;
}

.coverage__inner {
  text-align: center;
}

.coverage__intro {
  max-width: 820px;
  margin: 0 auto 58px;
}

.coverage__intro p {
  margin: 0;
  font-size: 19px;
  color: var(--text-soft);
}

.coverage__content {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 32px;
}

.coverage__map {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  padding: 28px;
}

.coverage__map img {
  width: min(260px, 100%);
  opacity: 0.75;
}

.coverage__card {
  padding: 54px 34px;
  border-radius: var(--radius);
  background: var(--blue-card-2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.coverage__card span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 22px;
}

.coverage__card p {
  margin: 0;
  font-size: clamp(20px, 2.8vw, 26px);
  line-height: 1.28;
  font-weight: 500;
}

.coverage__cta {
  margin-top: -4px;
}

.coverage__cta p {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 20px;
}

/* Speed */
.speed {
  padding: 72px 0 10px;
}

.speed__box {
  min-height: 280px;
  border-radius: var(--radius);
  background: var(--blue-card-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px;
}

.speed__box span {
  display: block;
  margin-bottom: 16px;
  font-style: italic;
  text-transform: uppercase;
}

.speed__box p {
  margin: 0 0 16px;
  font-size: 19px;
  color: var(--text-soft);
}

.speed__box .btn {
  min-width: 140px;
  text-transform: uppercase;
  font-style: italic;
}

/* Contact */
.contact {
  padding: 76px 0 10px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.contact__subtitle {
  margin: -10px 0 42px;
  color: var(--text-soft);
  font-size: 17px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 11px;
  background: var(--blue-card);
  color: var(--white);
  padding: 15px 17px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 92px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(101, 201, 0, 0.9);
}

.contact-form__button {
  width: 100%;
  box-shadow: none;
}

.contact-info {
  padding-top: 76px;
}

.contact-info h3 {
  display: inline-block;
  margin: 0 0 32px;
  color: var(--green);
  font-size: 23px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.contact-info__item {
  margin-bottom: 28px;
}

.contact-info__item strong {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-info__item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
}

.contact-info__address {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-info__address img {
  width: 26px;
  margin-top: 5px;
}

/* FAQ */
.faq {
  padding: 76px 0 10px;
}

.faq__inner {
  text-align: center;
}

.faq__title {
  margin-bottom: 18px;
  text-transform: uppercase;
}

.faq__subtitle {
  margin: 0 0 18px;
  font-size: 17px;
}

.accordion {
  text-align: left;
}

.accordion__item {
  margin-bottom: 9px;
}

.accordion__header {
  width: 100%;
  border: 0;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--blue-card);
  color: var(--white);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.accordion__body {
  display: none;
  margin: 0;
  padding: 28px 52px;
  border-radius: 0 0 12px 12px;
  background: var(--white);
  color: #343434;
  font-style: italic;
}

.accordion__body p {
  margin: 0;
}

.accordion__item.is-open .accordion__body {
  display: block;
}

.faq__button {
  margin-top: 52px;
}

/* Footer */
.footer {
  padding: 0 0 70px;
  background: var(--blue);
}

.footer__top {
  margin-top: 0;
}

.footer__inner {
  padding-top: 105px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 32px;
  align-items: center;
}

.footer__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.footer__links a {
  padding: 0 16px 5px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.footer__links a:first-child {
  padding-left: 0;
}

.footer__links a + a {
  border-left: 1px dotted rgba(255, 255, 255, 0.28);
}

.footer p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
}

.whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #07b41b;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}

.whatsapp:hover {
  transform: scale(1.06);
}

.whatsapp img {
  width: 36px;
}

/* Mobile */
@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-line::after,
  .footer__top {
    width: min(100% - 28px, var(--container));
    margin-top: 46px;
  }

  .topbar__inner {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 5px 0;
    text-align: center;
  }

  .navbar__inner {
    min-height: 76px;
    gap: 14px;
  }

  .brand img,
  .footer__brand img {
    width: 94px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .btn--header {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--blue-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero,
  .hero__inner {
    min-height: 520px;
  }

  .hero__inner {
    align-items: center;
    padding: 56px 0;
  }

  .plans__inner,
  .company__grid,
  .coverage__content,
  .contact__grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .plans__inner {
    gap: 28px;
    padding: 0;
  }

  .company,
  .coverage,
  .speed,
  .contact,
  .faq {
    padding-top: 54px;
  }

  .company__grid,
  .contact__grid {
    gap: 34px;
  }

  .company__text p {
    text-align: left;
  }

  .company__image,
  .coverage__map {
    min-height: 240px;
  }

  .coverage__intro {
    margin-bottom: 28px;
  }

  .coverage__card {
    padding: 36px 18px;
  }

  .coverage__card p {
    font-size: 20px;
  }

  .contact-info {
    padding-top: 0;
  }

  .accordion__body {
    padding: 22px 20px;
  }

  .footer__inner {
    padding-top: 48px;
    gap: 22px;
  }

  .footer__links a {
    padding: 0 12px 8px;
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .topbar__item {
    width: 100%;
  }

  .hero h1 {
    font-size: 48px;
  }

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

  .plan-type {
    grid-template-columns: 70px 1fr;
    gap: 18px;
  }

  .plan-type__icon {
    width: 70px;
    height: 70px;
  }

  .speed__box {
    min-height: 230px;
    padding: 26px 18px;
  }

  .footer__links {
    display: grid;
    border-bottom: 0;
  }

  .footer__links a,
  .footer__links a:first-child {
    padding: 7px 0;
    border-left: 0;
  }

  .footer__links a + a {
    border-left: 0;
  }

  .whatsapp {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}

.coverage__content {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 64px;
  align-items: center;
}

.coverage__map {
  width: 100%;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  border: none;
  display: block;
}

.coverage__map img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 28px;
}

.coverage__card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* AJUSTE FINAL - COBERTURA DESKTOP */
.coverage__content {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 64px;
  align-items: center;
}

.coverage__map {
  width: 100%;
  min-height: auto;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  border: none;
  display: block;
}

.coverage__map img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 28px;
  opacity: 1;
}

.coverage__card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* AJUSTE FINAL - COBERTURA MOBILE */
@media (max-width: 900px) {
  .coverage__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .coverage__map {
    display: block !important;
    width: 100%;
    min-height: auto;
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
    background: transparent;
  }

  .coverage__map img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 22px;
    opacity: 1;
  }

  .coverage__card {
    min-height: auto;
    padding: 34px 20px;
    border-radius: 22px;
  }

  .coverage__card span {
    font-size: 22px;
  }

  .coverage__card p {
    font-size: 22px;
    line-height: 1.35;
  }
}

@media (max-width: 560px) {
  .coverage__card p {
    font-size: 20px;
  }
}

.company__image {
  border: none;
  padding: 0;
  min-height: auto;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
}

.company__image img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  opacity: 1;
}

@media (max-width: 900px) {
  .company__image img {
    height: auto;
    border-radius: 22px;
  }

  .company__image {
    border-radius: 22px;
  }
}

.hero {
  min-height: 585px;
  background:
    linear-gradient(
      90deg,
      rgba(7, 62, 155, 0.98) 0%,
      rgba(7, 62, 155, 0.82) 42%,
      rgba(7, 62, 155, 0.28) 100%
    ),
    url("assets/imagens/hero.png") center right / cover no-repeat;
}

/* =========================
   MOBILE FINAL - NETWAY
   Colar no FINAL do style.css
========================= */

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .section-line::after,
  .footer__top {
    width: calc(100% - 44px);
    margin-top: 48px;
  }

  /* Header */
  .topbar {
    font-size: 11px;
  }

  .topbar__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 5px 0;
    text-align: center;
  }

  .topbar__item {
    width: 100%;
  }

  .navbar {
    position: relative;
  }

  .navbar__inner {
    min-height: 76px;
  }

  .brand img {
    width: 108px;
  }

  .btn--header {
    display: none;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #073e9b;
    border: 1px solid rgba(101, 201, 0, 0.35);
    border-radius: 18px;
    overflow: hidden;
    z-index: 99;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Hero mobile */
  .hero {
    min-height: 610px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 62, 155, 0.98) 0%,
        rgba(7, 62, 155, 0.92) 44%,
        rgba(7, 62, 155, 0.62) 100%
      ),
      url("assets/imagens/hero.png") center right / cover no-repeat;
  }

  .hero__inner {
    min-height: 610px;
    align-items: center;
    padding: 70px 0 60px;
  }

  .hero__content {
    width: 100%;
    max-width: 430px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 0.95;
  }

  .hero p {
    width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Planos */
  .plans__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0;
  }

  .plan-type {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }

  .plan-type__icon {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    overflow: hidden;
  }

  .plan-type__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Empresa */
  .company,
  .coverage,
  .speed,
  .contact,
  .faq {
    padding-top: 56px;
  }

  .company__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .company__text p {
    text-align: left;
    font-size: 15px;
  }

  .company__image {
    border: none;
    padding: 0;
    min-height: auto;
    border-radius: 22px;
    overflow: hidden;
  }

  .company__image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
    opacity: 1;
  }

  /* Cobertura */
  .coverage__intro {
    margin-bottom: 30px;
    text-align: center;
  }

  .coverage__intro p {
    font-size: 16px;
  }

  .coverage__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .coverage__map {
    display: block !important;
    width: 100%;
    padding: 0;
    min-height: auto;
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: transparent;
  }

  .coverage__map img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 22px;
    opacity: 1;
  }

  .coverage__card {
    min-height: auto;
    padding: 34px 20px;
    border-radius: 22px;
  }

  .coverage__card span {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .coverage__card p {
    font-size: 20px;
    line-height: 1.35;
  }

  .coverage__cta {
    margin-top: 20px;
  }

  .coverage__cta p {
    font-size: 18px;
    line-height: 1.35;
  }

  /* Speedtest */
  .speed__box {
    min-height: auto;
    padding: 44px 22px;
    border-radius: 22px;
  }

  .speed__box p {
    font-size: 17px;
    line-height: 1.45;
  }

  /* Contato */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-info {
    padding-top: 0;
  }

  .contact-info h3 {
    font-size: 22px;
  }

  .contact-info__item p {
    font-size: 16px;
    word-break: break-word;
  }

  /* FAQ */
  .accordion__header {
    font-size: 14px;
    line-height: 1.35;
    padding: 16px 20px;
    border-radius: 18px;
  }

  .accordion__body {
    padding: 20px;
  }

  .faq__button {
    width: 100%;
    margin-top: 34px;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 48px;
    text-align: center;
  }

  .footer__brand img {
    margin-inline: auto;
  }

  .footer__links {
    justify-content: center;
    border-bottom: 0;
  }

  .footer__links a {
    padding: 7px 10px;
    font-size: 15px;
  }

  .footer__links a + a {
    border-left: 0;
  }

  .whatsapp {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp img {
    width: 34px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 580px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 62, 155, 0.99) 0%,
        rgba(7, 62, 155, 0.94) 48%,
        rgba(7, 62, 155, 0.68) 100%
      ),
      url("assets/imagens/hero.png") center right / cover no-repeat;
  }

  .hero__inner {
    min-height: 580px;
    padding: 65px 0 56px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 15px;
  }

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

  .coverage__card p {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }
}

/* =========================================
   AJUSTE MOBILE FINAL - HERO / TEXTOS / PLANOS
   COLAR NO FINAL DO STYLE.CSS
========================================= */

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 22px;
    padding-right: 22px;
    margin-inline: auto;
  }

  .section-line::after,
  .footer__top {
    width: calc(100% - 44px);
    margin-top: 46px;
  }

  /* HEADER */
  .topbar {
    display: none;
  }

  .navbar {
    position: relative;
  }

  .navbar__inner {
    min-height: 74px;
    gap: 12px;
  }

  .brand img {
    width: 108px;
  }

  .btn--header {
    display: none;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #073e9b;
    border: 1px solid rgba(101, 201, 0, 0.35);
    border-radius: 18px;
    overflow: hidden;
    z-index: 99;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* HERO */
  .hero {
    min-height: 690px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 62, 155, 0.88) 0%,
        rgba(7, 62, 155, 0.82) 38%,
        rgba(7, 62, 155, 0.72) 100%
      ),
      url("assets/imagens/hero.png") 72% center / cover no-repeat;
  }

  .hero__inner {
    min-height: 690px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 58px;
  }

  .hero__content {
    width: 100%;
    max-width: 360px;
    margin-left: 0;
  }

  .hero h1 {
    margin: 0 0 20px;
    font-size: 42px;
    line-height: 0.95;
    letter-spacing: -0.5px;
  }

  .hero p {
    width: 100%;
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero .btn {
    width: 100%;
    max-width: 330px;
  }

  /* PLANOS */
  .plans__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }

  .plan-type {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    justify-items: center;
  }

  .plan-type__icon {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    overflow: hidden;
    padding: 0;
  }

  .plan-type__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .plan-type h2 {
    font-size: 17px;
    line-height: 1.2;
    margin: 0 0 10px;
  }

  .plan-type p {
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
    max-width: 320px;
  }

  /* EMPRESA */
  .company__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .company__text p {
    text-align: left;
    font-size: 15px;
  }

  .company__image {
    border-radius: 22px;
    overflow: hidden;
  }

  .company__image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
  }

  /* COBERTURA */
  .coverage__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .coverage__map {
    width: 100%;
    min-height: auto;
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
    background: transparent;
    display: block !important;
  }

  .coverage__map img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 22px;
  }

  .coverage__card {
    min-height: auto;
    padding: 30px 20px;
    border-radius: 22px;
  }

  .coverage__card p {
    font-size: 20px;
    line-height: 1.35;
  }

  /* CONTATO */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-info {
    padding-top: 0;
  }

  /* FAQ */
  .accordion__header {
    font-size: 14px;
    line-height: 1.35;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .accordion__body {
    padding: 20px;
  }

  /* FOOTER */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 48px;
    text-align: center;
  }

  .footer__brand img {
    margin-inline: auto;
  }

  .footer__links {
    justify-content: center;
    border-bottom: 0;
  }

  .footer__links a {
    padding: 7px 10px;
    font-size: 15px;
  }

  .footer__links a + a {
    border-left: 0;
  }

  .whatsapp {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp img {
    width: 34px;
  }
}

@media (max-width: 560px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: 640px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 62, 155, 0.90) 0%,
        rgba(7, 62, 155, 0.84) 38%,
        rgba(7, 62, 155, 0.74) 100%
      ),
      url("assets/imagens/hero.png") 70% center / cover no-repeat;
  }

  .hero__inner {
    min-height: 640px;
    padding-bottom: 48px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.45;
  }

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

  .plan-type__icon {
    min-height: 190px;
  }

  .coverage__card p {
    font-size: 18px;
  }

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

@media (max-width: 900px) {
  .hero {
    min-height: 640px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 62, 155, 0.88) 0%,
        rgba(7, 62, 155, 0.82) 38%,
        rgba(7, 62, 155, 0.72) 100%
      ),
      url("assets/imagens/hero.png") 72% center / cover no-repeat;
  }

  .hero__inner {
    min-height: 640px;
    display: flex;
    align-items: flex-start;
    padding: 115px 0 40px;
  }

  .hero__content {
    width: 100%;
    max-width: 360px;
  }

  .hero h1 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 0.95;
  }

  .hero p {
    width: 100%;
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero .btn {
    width: 100%;
    max-width: 330px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 610px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 62, 155, 0.90) 0%,
        rgba(7, 62, 155, 0.84) 38%,
        rgba(7, 62, 155, 0.74) 100%
      ),
      url("assets/imagens/hero.png") 70% center / cover no-repeat;
  }

  .hero__inner {
    min-height: 610px;
    padding: 105px 0 34px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* AJUSTE FINAL MOBILE - HERO E PLANOS */
@media (max-width: 900px) {
  .hero {
    min-height: 640px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 62, 155, 0.88) 0%,
        rgba(7, 62, 155, 0.84) 42%,
        rgba(7, 62, 155, 0.72) 100%
      ),
      url("assets/imagens/hero.png") 70% center / cover no-repeat;
  }

  .hero__inner {
    min-height: 640px;
    align-items: center;
    padding: 60px 22px 40px;
  }

  .hero__content {
    width: 100%;
    max-width: 380px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 0.95;
    margin: 0 0 18px;
  }

  .hero p {
    width: 100%;
    max-width: 360px;
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 24px;
  }

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

  .plans {
    padding-top: 34px;
  }

  .plans__inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 0 22px;
  }

  .plan-type {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }

  .plan-type__icon {
    width: 150px;
    height: 150px;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 22px;
    padding: 24px;
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .plan-type__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .plan-type h2 {
    font-size: 18px;
    line-height: 1.15;
    margin: 0 0 8px;
  }

  .plan-type p {
    max-width: 320px;
    font-size: 15px;
    line-height: 1.45;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 620px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 62, 155, 0.88) 0%,
        rgba(7, 62, 155, 0.84) 42%,
        rgba(7, 62, 155, 0.72) 100%
      ),
      url("assets/imagens/hero.png") 72% center / cover no-repeat;
  }

  .hero__inner {
    min-height: 620px;
    padding: 50px 22px 38px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 14px;
  }

  .plan-type__icon {
    width: 135px;
    height: 135px;
    padding: 22px;
  }
}

/* HERO MOBILE - AJUSTE FINO FINAL */
@media (max-width: 900px) {
  .hero {
    min-height: 590px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 62, 155, 0.88) 0%,
        rgba(7, 62, 155, 0.84) 40%,
        rgba(7, 62, 155, 0.74) 100%
      ),
      url("assets/imagens/hero.png") 74% center / cover no-repeat;
  }

  .hero .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__inner {
    min-height: 590px;
    display: flex;
    align-items: flex-start;
    padding: 36px 0 34px;
  }

  .hero__content {
    width: 100%;
    max-width: 340px;
    padding-left: 2px;
    padding-right: 2px;
    margin-top: 70px;
  }

  .hero h1 {
    margin: 0 0 16px;
    font-size: 38px;
    line-height: 0.95;
  }

  .hero p {
    width: 100%;
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.45;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 560px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 62, 155, 0.88) 0%,
        rgba(7, 62, 155, 0.84) 40%,
        rgba(7, 62, 155, 0.76) 100%
      ),
      url("assets/imagens/hero.png") 76% center / cover no-repeat;
  }

  .hero .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__inner {
    min-height: 560px;
    padding: 28px 0 30px;
  }

  .hero__content {
    max-width: 320px;
    margin-top: 64px;
  }

  .hero h1 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 13px;
    margin-bottom: 18px;
  }
}

/* =========================
   PLANOS COM IMAGEM - DESKTOP
========================= */

.plans {
  padding: 58px 0 48px;
  background: linear-gradient(180deg, #453f92 0%, var(--blue) 100%);
}

.plans__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 0;
}

.plan-type {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  align-items: center;
  padding: 22px;
  border-radius: 26px;
  background: rgba(21, 87, 230, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.plan-type__icon {
  width: 190px;
  height: 125px;
  padding: 0;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  background: transparent;
}

.plan-type__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.plan-type h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 800;
  color: #ffffff;
}

.plan-type p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

/* AJUSTE FINAL DOS CARDS DE PLANOS NO MOBILE */
@media (max-width: 900px) {
  .plans {
    padding: 38px 0 42px !important;
  }

  .plans__inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding: 0 18px !important;
  }

  .plan-type {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 18px !important;
    padding: 18px !important;
    border-radius: 26px !important;
    background: rgba(21, 87, 230, 0.42) !important;
  }

  .plan-type__icon {
    width: 100% !important;
    max-width: 340px !important;
    height: 190px !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    display: block !important;
  }

  .plan-type__icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }

  .plan-type h2 {
    font-size: 21px !important;
    line-height: 1.12 !important;
    margin: 0 0 8px !important;
  }

  .plan-type p {
    max-width: 320px !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 560px) {
  .plan-type__icon {
    height: 170px !important;
  }

  .plan-type h2 {
    font-size: 20px !important;
  }

  .plan-type p {
    font-size: 14px !important;
  }
}

.brand img,
.footer__brand img {
  width: 118px;
  height: auto;
}

/* LOGO NETWAY */
.brand img {
  width: 180px !important;
  height: auto;
}

.footer__brand img {
  width: 170px !important;
  height: auto;
}

@media (max-width: 900px) {
  .brand img {
    width: 145px !important;
  }

  .footer__brand img {
    width: 145px !important;
  }
}

/* AJUSTE LOGO NO TOPO */
.navbar__inner {
  min-height: 96px;
  align-items: flex-start;
  padding-top: 24px;
}

.brand img {
  width: 180px !important;
  height: auto;
}

.menu-toggle {
  margin-top: 0;
}

@media (max-width: 900px) {
  .navbar__inner {
    min-height: 92px;
    align-items: flex-start;
    padding-top: 22px;
  }

  .brand img {
    width: 150px !important;
  }

  .menu-toggle {
    margin-top: 0;
  }
}

.btn--portal-mobile {
  display: none;
}

@media (max-width: 768px) {
  .btn--header {
    display: none;
  }

  .btn--portal-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
  }

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

  .menu-toggle {
    flex-shrink: 0;
  }

  .brand {
    flex-shrink: 0;
  }
}

/* Botão Portal exclusivo do mobile */
.btn--portal-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .btn--header {
    display: none !important;
  }

  .btn--portal-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
  }

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

/* Portal mobile escondido no desktop */
.nav-portal-mobile {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .btn--header {
    display: none !important;
  }

  .nav-portal-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
  }

  .navbar__inner {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand {
    flex-shrink: 0;
  }

  .menu-toggle {
    flex-shrink: 0;
  }
}