html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #050505;
}

body {
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

/*topbar*/
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #070707;
  width: 100%;
}

.topbar__inner {
  max-width: 1240px;
  min-height: 58px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar__item {
  color: #ffffff;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0.96;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.topbar__item:hover {
  color: #d9e2ff;
}
/*topbar*/

.site-header {
  position: fixed;
  top: 58px;
  right: 0;
  left: 0;
  z-index: 999;
  background: rgba(119, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.site-header__bar {
  max-width: 1240px;
  min-height: 84px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo {
  display: block;
  width: auto;
  max-width: 200px;
  max-height: 54px;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-header__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ff3b3b;
  transform: translateY(-1px);
}

.site-header__link--highlight {
  background: linear-gradient(135deg, #ff1e1e, #b30000);
  box-shadow: 0 10px 28px rgba(179, 0, 0, 0.35);
}

.site-header__link--highlight:hover {
  background: linear-gradient(135deg, #ff3b3b, #c40000);
  color: #ffffff;
}

.site-header__toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-header__toggle-line {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__toggle.is-active .site-header__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle.is-active .site-header__toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.is-active .site-header__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/*slide*/
.hero-section {
  padding-top: 142px;
  background: #050505;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 142px);
  overflow: hidden;
  background: #000000;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 142px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.7s ease;
}

.hero-slide--active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(120, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-left: min(8vw, 120px);
  margin-right: 24px;
  padding: 32px 0;
  font-family: "Outfit", sans-serif;
  color: #ffffff;
}

.hero-slide__tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 59, 59, 0.4);
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.12);
  color: #ff6b6b;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-slide__title {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-slide__text {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero-slide__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff1b1b, #a90000);
  color: #ffffff;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(169, 0, 0, 0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-slide__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(169, 0, 0, 0.46);
  filter: brightness(1.05);
}

.hero-slider__controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-slider__arrow {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-slider__arrow:hover {
  background: rgba(255, 0, 0, 0.38);
  transform: scale(1.04);
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-slider__dot--active {
  background: #ff2b2b;
  transform: scale(1.16);
}
/*slide*/
@media (max-width: 980px) {
  .site-header__bar {
    min-height: 78px;
    padding: 0 18px;
  }

  .site-header__logo {
    max-width: 150px;
    max-height: 48px;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header__link {
    justify-content: flex-start;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 14px;
  }

  .site-header__link--highlight {
    justify-content: center;
  }

  .hero-section {
    padding-top: 78px;
  }

  .hero-slider,
  .hero-slider__track {
    min-height: calc(100vh - 78px);
  }

  .hero-slide {
    align-items: flex-end;
  }

  .hero-slide__content {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 32px 20px 88px;
  }

  .hero-slide__title {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .hero-slide__text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-slider__controls {
    bottom: 18px;
    right: 18px;
    left: 18px;
  }
}

@media (max-width: 640px) {
  .site-header__bar {
    min-height: 74px;
    gap: 12px;
  }

  .site-header__logo {
    max-width: 236px;
    max-height: 144px;
  }

  .hero-section {
    padding-top: 74px;
  }

  .hero-slider,
  .hero-slider__track {
    min-height: calc(100vh - 74px);
  }

  .hero-slide__overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.72) 52%, rgba(0, 0, 0, 0.92) 100%),
      linear-gradient(180deg, rgba(140, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.1) 100%);
  }

  .hero-slide__content {
    padding: 28px 16px 92px;
  }

  .hero-slide__tag {
    margin-bottom: 14px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hero-slide__title {
    margin-bottom: 14px;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

  .hero-slide__text {
    margin-bottom: 24px;
    font-size: 0.96rem;
  }

  .hero-slide__button {
    width: 100%;
    min-height: 54px;
  }

  .hero-slider__arrow {
    width: 46px;
    height: 46px;
  }

  .hero-slider__controls {
    gap: 10px;
  }

  .hero-slider__dots {
    gap: 10px;
  }
}

/*responsividade topbar e header*/
@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .hero-section {
    padding-top: 78px;
  }

  .hero-slider,
  .hero-slider__track {
    min-height: calc(100vh - 78px);
  }
}
/*responsividade topbar e header*/

/*somos sua escolha*/
.exnet-hero-section {
  padding: 80px 20px;
  background: #f3f3f3;
  font-family: Arial, Helvetica, sans-serif;
}

.exnet-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.exnet-hero-content {
  flex: 1 1 50%;
  max-width: 560px;
}

.exnet-hero-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: #c40000;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.exnet-hero-title {
  margin: 0 0 20px;
  color: #1a1a1a;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
  font-weight: 400;
}

.exnet-hero-title strong {
  color: #c40000;
  font-weight: 800;
}

.exnet-hero-text {
  margin: 0;
  color: #444;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

.exnet-hero-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
}

.exnet-hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

/* Mobile: imagem em cima */
@media (max-width: 768px) {
  .exnet-hero-section {
    padding: 48px 16px;
  }

  .exnet-hero-container {
    flex-direction: column;
    gap: 28px;
  }

  .exnet-hero-image {
    order: -1;
    width: 100%;
    justify-content: center;
  }

  .exnet-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .exnet-hero-text {
    max-width: 100%;
    font-size: 16px;
  }

  .exnet-hero-image img {
    max-width: 100%;
    border-radius: 20px;
  }
}
/*somos sua escolha*/

/*perfil de velocidade*/
.perfilnet-section {
  --perfilnet-red: #c40018;
  --perfilnet-blue-dark: #041456;
  --perfilnet-red: #c40018;
  --perfilnet-red-dark: #980014;
  --perfilnet-green: #22b61e;
  --perfilnet-green-dark: #189414;
  --perfilnet-white: #ffffff;
  --perfilnet-text-soft: rgba(255, 255, 255, 0.82);

  padding: 40px 20px;
  background: linear-gradient(180deg, var(--perfilnet-blue) 0%, var(--perfilnet-blue-dark) 100%);
  font-family: Arial, Helvetica, sans-serif;
}

.perfilnet-container {
  max-width: 1260px;
  margin: 0 auto;
}

.perfilnet-header {
  text-align: center;
  margin-bottom: 42px;
}

.perfilnet-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--perfilnet-white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.perfilnet-title {
  margin: 0;
  color: var(--perfilnet-white);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
}

.perfilnet-subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--perfilnet-text-soft);
  font-size: 19px;
  line-height: 1.6;
}

.perfilnet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.perfilnet-card {
  overflow: hidden;
  border-radius: 28px;
  background: #0b1f83;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.perfilnet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.34);
}

.perfilnet-image {
  height: 320px;
  overflow: hidden;
}

.perfilnet-image img {
  width: 100%;
  height: 160%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.perfilnet-card:hover .perfilnet-image img {
  transform: scale(1.06);
}

.perfilnet-content {
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, var(--perfilnet-red) 0%, var(--perfilnet-red-dark) 100%);
  text-align: center;
}

.perfilnet-content h3 {
  margin: 0 0 24px;
  color: var(--perfilnet-white);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perfilnet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 16px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--perfilnet-green) 0%, var(--perfilnet-green-dark) 100%);
  color: var(--perfilnet-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.perfilnet-button:hover {
  transform: translateY(-2px);
  opacity: 0.96;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.24);
}

.perfilnet-button:active {
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .perfilnet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .perfilnet-section {
    padding: 56px 16px;
  }

  .perfilnet-header {
    margin-bottom: 28px;
  }

  .perfilnet-subtitle {
    font-size: 16px;
  }

  .perfilnet-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .perfilnet-image {
    height: 260px;
  }

  .perfilnet-content {
    padding: 22px 18px 20px;
  }

  .perfilnet-content h3 {
    min-height: auto;
    margin-bottom: 18px;
    font-size: 28px;
  }

  .perfilnet-button {
    width: 100%;
    min-width: unset;
    font-size: 17px;
    padding: 15px 20px;
  }
}
/*perfil*/

/*footer*/
.footernet-section {
  background: #ffffff;
  padding: 70px 20px 30px;
  font-family: Arial, Helvetica, sans-serif;
  border-top: 1px solid #eee;
}

.footernet-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* ESQUERDA */
.footernet-left {
  flex: 1;
}

.footernet-logo {
  max-width: 320px;
  margin-bottom: -140px;
  height: auto;

}

.footernet-text {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 25px;
}

.footernet-social {
  display: flex;
  gap: 12px;
}

.footernet-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066ff, #00aaff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.footernet-social-btn:hover {
  transform: translateY(-3px);
}

/* DIREITA */
.footernet-right {
  flex: 1;
}

.footernet-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
  font-weight: 800;
}

.footernet-item {
  padding: 14px 0;
  border-bottom: 1px solid #e6e6e6;
  font-size: 16px;
  color: #444;
}

.footernet-cert {
  margin-top: 24px;
}

.footernet-cert p {
  font-weight: 700;
  margin-bottom: 10px;
}

.footernet-cert img {
  max-width: 160px;
}

/* RODAPÉ FINAL */
.footernet-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .footernet-container {
    flex-direction: column;
    gap: 40px;
  }

  .footernet-bottom {
    text-align: center;
    justify-content: center;
  }

  .footernet-text {
    max-width: 100%;
  }
}

/*redesosicais*/
.footernet-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c40000, #ff1e1e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.footernet-social-btn svg {
  width: 20px;
  height: 20px;
}

.footernet-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(196, 0, 0, 0.3);
}
/*redessociais

/*whatsapp*/
.zapbox {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.zapbox-message {
  position: relative;
  display: none;
  background: #ffffff;
  color: #333;
  padding: 12px 38px 12px 14px;
  border-radius: 16px;
  max-width: 220px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.zapbox-message.zapbox-show {
  display: block;
  animation: zapFadeUp 0.35s ease;
}

.zapbox-message::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 14px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
}

.zapbox-close {
  position: absolute;
  top: 6px;
  right: 8px;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.zapbox-button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.zapbox-button:hover {
  transform: scale(1.05);
}

.zapbox-button svg {
  width: 25px;
  height: 25px;
}

@keyframes zapFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .zapbox {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .zapbox-message {
    max-width: 170px;
    font-size: 13px;
    padding: 11px 34px 11px 12px;
  }

  .zapbox-button {
    width: 48px;
    height: 48px;
  }

  .zapbox-button svg {
    width: 22px;
    height: 22px;
  }
}
/*whatsapp*/