html,
body {
  margin: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
}
/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo-image {
  display: block;
  height: 72px;
  width: auto;
}

.site-header__nav {
  display: flex;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__link {
  color: #232323;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.site-header__link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #0a3d91;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.site-header__link:hover {
  color: #0a3d91;
}

.site-header__link:hover::after {
  width: 100%;
}

/* BOTÃO HAMBÚRGUER */
.site-header__toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-header__toggle:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.site-header__toggle-line {
  position: absolute;
  width: 22px;
  height: 2.5px;
  background: #0e0e0e;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.site-header__toggle-line:nth-child(1) {
  transform: translateY(-7px);
}

.site-header__toggle-line:nth-child(2) {
  transform: translateY(0);
}

.site-header__toggle-line:nth-child(3) {
  transform: translateY(7px);
}

/* Estado ativo do botão */
.site-header__toggle.active .site-header__toggle-line:nth-child(1) {
  transform: rotate(45deg);
}

.site-header__toggle.active .site-header__toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.active .site-header__toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 96px;
}

.hero-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.hero-slide {
  min-width: 100%;
  position: relative;
}

.hero-slide__image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-slide__content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}

.hero-slide__title {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.hero-slide__text {
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-slide__button {
  display: inline-block;
  padding: 12px 22px;
  background: #11bb1c;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.hero-slide__button:hover {
  background: #c1121f;
}

/* CONTROLES */
.hero-slider__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.hero-slider__control:hover {
  background: rgba(0, 0, 0, 0.55);
}

.hero-slider__control--prev {
  left: 10px;
}

.hero-slider__control--next {
  right: 10px;
}

/* DOTS */
.hero-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
}

.hero-slider__dot--active {
  background: #fff;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .site-header__container {
    padding: 10px 16px;
  }

  .site-header__logo-image {
    height: 58px;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    width: 240px;
    display: flex;
    flex-direction: column;
    background: rgba(10, 61, 145, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .site-header__nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 0;
    margin: 0;
  }

  .site-header__item {
    width: 100%;
  }

  .site-header__link {
    display: block;
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.25s ease, transform 0.2s ease;
  }

  .site-header__link::after {
    display: none;
  }

  .site-header__link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(4px);
  }

  .hero-slider {
    margin-top: 80px;
  }

  .hero-slide__content {
    left: 5%;
    max-width: 90%;
  }

  .hero-slide__title {
    font-size: 1.9rem;
  }

  .hero-slide__text {
    font-size: 0.95rem;
  }
}

/* =========================
   SEÇÃO SOBRE FTI
========================= */
.sobre-fti {
  padding: 90px 20px;
  background: #f5f5f5;
}

.sobre-fti__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sobre-fti__imagem img {
  width: 80%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.sobre-fti__conteudo {
  color: #2f3553;
}

.sobre-fti__titulo {
  font-size: 3.6rem;
  line-height: 1.1;
  font-weight: 700;
  color: #2e2e2e;
  margin: 0 0 28px;
}

.sobre-fti__titulo span {
  color: #cf172a;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1100px) {
  .sobre-fti__container {
    gap: 36px;
  }

  .sobre-fti__titulo {
    font-size: 2.8rem;
  }

 
}

@media (max-width: 768px) {
  .sobre-fti {
    padding: 70px 16px;
  }

  .sobre-fti__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sobre-fti__titulo {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }

 
  .sobre-fti__imagem img {
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .sobre-fti__titulo {
    font-size: 1.8rem;
  }
}

/* =========================
   FAIXA MARQUEE
========================= */
.faixa-marquee {
  width: 100%;
  background: #9a0e0e;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  padding: 18px 0;
}

.faixa-marquee__wrap {
  width: 100%;
  overflow: hidden;
}

.faixa-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-right 20s linear infinite;
}

.faixa-marquee__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.faixa-marquee__content span {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-right: 28px;
}

.faixa-marquee__content .dot {
  color: #e7a623;
  margin-right: 28px;
  font-size: 1.2rem;
  line-height: 1;
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .faixa-marquee {
    padding: 14px 0;
  }

  .faixa-marquee__content span {
    font-size: 0.88rem;
    margin-right: 20px;
  }

  .faixa-marquee__content .dot {
    margin-right: 20px;
    font-size: 1rem;
  }

  .faixa-marquee__track {
    animation-duration: 18s;
  }
}

@media (max-width: 480px) {
  .faixa-marquee__content span {
    font-size: 0.8rem;
    margin-right: 16px;
  }

  .faixa-marquee__content .dot {
    margin-right: 16px;
  }

  .faixa-marquee__track {
    animation-duration: 15s;
  }
}

/* =========================
   SEÇÃO ENTRETENIMENTO
========================= */
.entretenimento {
  position: relative;
  min-height: 600px;
  padding: 120px 20px;
  display: flex;
  align-items: center;

  /* 👉 SUA IMAGEM */
  background-image: url("/assets/img/casal-filme.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* overlay escuro pra dar contraste */
.entretenimento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 0, 53, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* container */
.entretenimento__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* conteúdo */
.entretenimento__conteudo {
  max-width: 520px;
  color: #ffffff;
}

/* título pequeno */
.entretenimento__tag {
  display: inline-block;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  font-size: 0.85rem;
  font-weight: 700;
}

/* título principal */
.entretenimento__titulo {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
}

.entretenimento__titulo span {
  color: #ffbe1b;
}

/* texto */
.entretenimento__descricao {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
}

/* badges */
.entretenimento__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.entretenimento__items span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 0.85rem;
  font-weight: 600;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .entretenimento {
    min-height: 450px;
    padding: 80px 16px;
  }

  .entretenimento__titulo {
    font-size: 2.2rem;
  }

  .entretenimento__descricao {
    font-size: 0.95rem;
  }

  .entretenimento__conteudo {
    max-width: 100%;
  }

  /* overlay mais forte no mobile */
  .entretenimento::before {
    background: rgba(0, 0, 0, 0.65);
  }
}

@media (max-width: 480px) {
  .entretenimento__titulo {
    font-size: 1.9rem;
  }
}

.footer-netvelox {
  padding: 56px 20px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #edecf1 100%);
  color: #ffffff;
}

.footer-netvelox__container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-netvelox__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-netvelox__brand {
  max-width: 420px;
}

.footer-netvelox__logo-link {
  display: inline-flex;
  text-decoration: none;
}

.footer-netvelox__logo {
  width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-netvelox__text {
  margin: 22px 0 0;
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-netvelox__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

/* BASE DOS BOTÕES */
.footer-netvelox__social-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* TAMANHO CORRETO DO SVG */
.footer-netvelox__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* FACEBOOK */
.footer-netvelox__social-link.facebook {
  background: #1877f2;
  color: #ffffff;
}

/* INSTAGRAM */
.footer-netvelox__social-link.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #ffffff;
}

/* HOVER BONITO */
.footer-netvelox__social-link:hover {
  transform: translateY(-4px) scale(1.05);
}

/* CONTATOS */
.footer-netvelox__contacts {
  width: 100%;
  max-width: 620px;
}

.footer-netvelox__title {
  margin: 0 0 24px;
  color: #333333;
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 800;
}

.footer-netvelox__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-netvelox__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #11c8f3;
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-netvelox__icon {
  flex: 0 0 auto;
  font-size: 1rem;
}

.footer-netvelox__link {
  color: #333333;
  text-decoration: none;
}

.footer-netvelox__link:hover {
  opacity: 0.8;
}

/* ANATEL */
.footer-netvelox__anatel {
  margin-top: 28px;
}

.footer-netvelox__anatel-label {
  display: block;
  margin-bottom: 12px;
  color: #333333;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-netvelox__anatel-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

/* RODAPÉ FINAL */
.footer-netvelox__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
}

.footer-netvelox__copy,
.footer-netvelox__company {
  margin: 0;
  color: #292929;
  font-size: 0.98rem;
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .footer-netvelox__top {
    flex-direction: column;
    gap: 42px;
  }

  .footer-netvelox__contacts {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-netvelox {
    padding: 46px 16px 22px;
  }

  .footer-netvelox__title {
    font-size: 1.75rem;
  }

  .footer-netvelox__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-netvelox__logo {
    width: 96px;
  }

  .footer-netvelox__text {
    font-size: 0.96rem;
  }

  .footer-netvelox__title {
    font-size: 1.5rem;
  }

  .footer-netvelox__item,
  .footer-netvelox__copy,
  .footer-netvelox__company {
    font-size: 0.94rem;
  }

  .footer-netvelox__social-link {
    width: 42px;
    height: 42px;
  }

  .footer-netvelox__anatel-img {
    max-width: 180px;
  }
}