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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #ffffff;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* evita scroll horizontal e barras extras */
  width: 100%;
}

/* Defina a largura total da barra de rolagem */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Cor de fundo da trilha */
}

::-webkit-scrollbar-thumb {
  background-color: #FF9300; /* Cor principal da barra de rolagem */
  border-radius: 6px; /* Para deixar as pontas arredondadas */
  border: 1.5px solid #001444; /* Para dar um espaçamento entre o polegar e a trilha */
}

/* Opcional: Efeitos ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
  background-color: #E07E00; /* Cor ao passar o mouse */
}

/* NAV CONTAINER */
.navv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 5%;
  padding-top: 10px;
  background: linear-gradient(90deg, #ffbf009f, #ff9300);
  position: relative;
  z-index: 1000;
}

/* NAV LINKS */
.nav-itens {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-itens a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: white;
  position: relative;
  transition: color 0.3s ease;
}

.nav-itens a::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 0;
  background: #001444;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-itens a:hover {
  color: #001444;
}

.nav-itens a:hover::after {
  width: 100%;
}

/* MENU TOGGLE - escondido em telas grandes */
.menu-toggle {
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  display: none;
}

.menu-toggle.hidden {
  display: none;
  /* Esconde o ícone quando estiver "hidden" */
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
    position: relative;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
  }

  .menu-toggle:hover {
    transform: scale(1.1);
  }

  /* Menu lateral */
  .nav-itens {
    position: fixed;
    top: 0;
    right: 0;
    width: min(80%, 280px);
    height: 100vh;

    /* Aparência moderna (glassmorphism) */
    background: rgba(255, 147, 0, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.25);

    /* Efeito inicial (fora da tela e opaco) */
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 1s ease;

    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    /* espaçamento entre itens */
    padding: 0 1rem;
  }

  /* Ativo (visível) */
  .nav-itens.active {
    transform: translateX(0);
    opacity: 1;
  }

  /* Itens da lista */
  .nav-itens li {
    list-style: none;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.4s ease forwards;
  }

  /* Links */
  .nav-itens a {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
    width: 100%;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .nav-itens a:hover {
    transform: scale(1.05);
    color: #001444;
  }

  /* Animação suave dos links */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Estilos base */
header {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 70vh;
  min-height: 400px;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  cursor: default;
}

.carousel-item {
  min-width: 100%;
  position: relative;
}

.carousel-item img {
  display: block;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Botões de navegação */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: clamp(1.5rem, 4vw, 2rem);
  padding: 1rem;
  cursor: pointer;
  z-index: 10;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}

/* Navegação por pontos */
.carousel-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.carousel-nav input[type="radio"] {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-nav input[type="radio"]:checked {
  background-color: #ff9300;
  border-color: #ffffff;
}

.carousel-nav input[type="radio"]:hover {
  background-color: #ff9300;
  transform: scale(1.2);
}

/* Conteúdo dos slides */
.conteudo-slide {
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  color: white;
  padding: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  max-width: 90%;
  z-index: 2;
}

.carousel-item.active .conteudo-slide {
  opacity: 1;
}

/* Alinhamentos */
.conteudo-slide.alinha-direita {
  right: 5%;
  text-align: left;
}

.conteudo-slide.alinha-esquerda {
  left: 5%;
  text-align: left;
}

/* Tipografia responsiva */
.carousel h2 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  text-align: left;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  word-spacing: 0.2em;
  line-height: 1.1;
  margin-bottom: 2px;
}

.paragraph {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.4;
  margin: 1rem 0;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}

/* Botão do carrossel */
.btn-carousel {
  display: inline-block;
  background-color: #001444;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-top: 5px;
  margin-left: 70%;
  border: 2px solid transparent;
}

.btn-carousel:hover {
  background-color: #e07e00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 126, 0, 0.3);
}

/* Animações */
.animacao-texto {
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.alinha-esquerda .animacao-texto.animar {
  animation-name: slideFromLeft;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.alinha-direita .animacao-texto.animar {
  animation-name: slideFromRight;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

/* MEDIA QUERIES PARA RESPONSIVIDADE */

/* Tablets em modo paisagem */
@media (max-width: 1024px) {
  .carousel {
    height: 30vh;
    min-height: 350px;
  }

  .carousel-item img {
    height: 30vh;
    min-height: 350px;
    position: absolute;
  }

  .carousel h2 {
    font-size: 27px;
    text-align: left;
  }

  .paragraph {
    font-size: 13px;
  }

  .conteudo-slide {
    max-width: 50%;
    margin-top: 4%;
  }

  .carousel-button {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    padding: 0%;
    margin-top: 1px;
  }
}

/* Tablets em modo retrato */
@media (max-width: 768px) {
  .carousel {
    height: 60vh;
    min-height: 300px;
  }

  .carousel-item img {
    height: 60vh;
    min-height: 300px;
  }

  .conteudo-slide {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    background: none;
    padding: 2rem 1.5rem;
    margin-top: 0;
    width: min(92%, 640px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .conteudo-slide.alinha-direita,
  .conteudo-slide.alinha-esquerda {
    left: 50%;
    margin-top: 20%;
    right: auto;
    text-align: center;
  }

  .conteudo-slide.alinha-direita,
  .conteudo-slide.alinha-esquerda {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
  }

  .carousel h2 {
    font-size: clamp(1.3rem, 6vw, 2rem);
    text-align: left;
    margin-top: 180px;
  }

  .paragraph {
    font-size: clamp(0.85rem, 3vw, 1rem);
    margin: 0.8rem 0;
    text-align: left;
  }

  .paragraph br {
    display: none;
  }

  .carousel-button {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1rem;
    padding: 0.5rem;
  }

  .carousel-button.prev {
    left: 0.5rem;
  }

  .carousel-button.next {
    right: 0.5rem;
  }

  .carousel-nav {
    bottom: 1rem;
    gap: 0.8rem;
  }

  .carousel-nav input[type="radio"] {
    width: 10px;
    height: 10px;
  }
}

/* Smartphones */
@media (max-width: 480px) {
  .carousel {
    height: 50vh;
    min-height: 280px;
  }

  .carousel-item img {
    height: 50vh;
    min-height: 280px;
  }

  .conteudo-slide {
    padding: 1.1rem 1rem;
    margin-top: 0;
    background: none;
    width: 92%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 65%;
    transform: translateY(-50%);
  }

  .carousel h2 {
    font-size: 16px;
    margin-bottom: 0.6rem;
    word-spacing: 0.1em;
    margin-top: 130px;
  }

  .paragraph {
    font-size: 10px;
    margin: 0.6rem 0;
    line-height: 1.3;
  }

  .btn-carousel {
    padding: 0.6rem 1.2rem;
    font-size: 10px;
    margin-top: 0.8rem;
  }

  .carousel-button {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }

  .carousel-nav input[type="radio"] {
    width: 8px;
    height: 8px;
  }

  .carousel-nav {
    gap: 0.6rem;
  }
}
@media (max-width: 390px){
  .carousel {
    height: 50vh;
    min-height: 280px;
  }

  .carousel-item img {
    height: 60vh;
    min-height: 280px;
  }

  .conteudo-slide { 
    padding: 1.1rem 1rem;
    margin-top: 0;
    background: none;
    width: 92%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 25%;
    transform: translateY(-50%);
  }

  .carousel h2 {
    font-size: 12px;
    word-spacing: 0.1em;
    margin-top: 150px;
  }

  .paragraph {
    font-size: 7px;
    line-height: 1.3;
    font-weight: 400;
  }

  .btn-carousel {
    padding: 0.6rem 1.2rem;
    font-size: 7px;
    margin-top: 2px;
  }

  .carousel-button {
    width: 1rem;
    height: 1rem;
    font-size: 0.9rem;
  }

  .carousel-nav input {
    width: 8px;
    height: 8px;
  }

  .carousel-nav {
    gap: 0.6rem;
  }
}
@media (max-width: 375px){
.carousel {
    height: 50vh;
    min-height: 280px;
  }

  .carousel-item img {
    height: 60vh;
    min-height: 280px;
  }

  .conteudo-slide {
    padding: 1.1rem 1rem;
    margin-top: 0;
    background: none;
    width: 92%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 25%;
    transform: translateY(-50%);
  }

  .carousel h2 {
    font-size: 12px;
    word-spacing: 0.1em;
    margin-top: 90px;
  }

  .paragraph {
    font-size: 7px;
    line-height: 1.3;
    font-weight: 400;
  }

  .btn-carousel {
    padding: 0.6rem 1.2rem;
    font-size: 7px;
    margin-top: 2px;
  }

  .carousel-button {
    width: 1rem;
    height: 1rem;
    font-size: 0.9rem;
  }

  .carousel-nav input {
    width: 8px;
    height: 8px;
  }

  .carousel-nav {
    gap: 0.6rem;
  }
}
/* Smartphones muito pequenos */
@media (max-width: 320px) {
  .carousel {
    height: 50vh;
    min-height: 280px;
  }

  .carousel-item img {
    height: 60vh;
    min-height: 280px;
  }

  .conteudo-slide {
    padding: 1.1rem 1rem;
    margin-top: 0;
    background: none;
    width: 92%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 25%;
    transform: translateY(-50%);
  }

  .carousel h2 {
    font-size: 12px;
    word-spacing: 0.1em;
    margin-top: 70px;
  }

  .paragraph {
    font-size: 7px;
    line-height: 1.3;
  }

  .btn-carousel {
    padding: 4px;
    font-size: 6px;
    width: 60px;
    height: 20px;
    text-align: center;
    justify-content: center;
  }

  .carousel-button {
    width: 1rem;
    height: 1rem;
    font-size: 0.9rem;
  }

  .carousel-nav input {
    width: 8px;
    height: 8px;
  }

  .carousel-nav {
    gap: 0.6rem;
  }
}


/* Telas muito grandes (desktops) */
@media (min-width: 1400px) {
  .carousel {
    height: 50vh;
    min-height: 600px;
  }

  .carousel-item img {
    height: 50vh;
    min-height: 600px;
  }

  .conteudo-slide {
    padding: 3px;
    max-width: 40%;
    text-align: left;
    top: 30%;
  }

  .carousel h2 {
    font-size: clamp(1.5rem, 3vw, 3.5rem);
  }

  .paragraph {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  }

  .btn-carousel {
    padding: 1rem 2rem;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
  }
}

/* Modo paisagem em dispositivos móveis*/
@media (max-height: 500px) and (orientation: landscape) {
  .carousel {
    height: 10vh;
  }

  .carousel-item img {
    height: 100vh;
  }

  .conteudo-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    border-radius: 10px;
    max-width: 45%;
  }

  .conteudo-slide.alinha-direita {
    right: 5%;
    position: absolute;
  }

  .conteudo-slide.alinha-esquerda {
    left: 5%;
    position: absolute;
  }

  .carousel h2 {
    font-size: clamp(1rem, 10vw, 1.5rem);
  }

  .paragraph {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
  }

  .btn-carousel {
    padding: 0.4rem 0.8rem;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
  }
}

.botao-whatsapp-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  width: 60px;
  height: 60px;
  background-color: #14bd52;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: width 0.4s ease-in-out, border-radius 0.4s ease-in-out;
  text-decoration: none;
  z-index: 1000;
  /* Garante que o botão fique na frente de outros elementos */
}

/* Estado do botão quando o mouse está sobre ele */
.botao-whatsapp-flutuante:hover {
  width: 220px;
  border-radius: 30px;
  justify-content: space-between;
}

.icone-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  /* Garante que o ícone esteja sempre na frente */
  z-index: 2;
}

.botao-whatsapp-flutuante img {
  width: 36px;
  height: 36px;
  display: block;
}

.texto-hover {
  color: white;
  font-family: sans-serif;
  font-size: 18px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  height: 60px;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.4s ease-in-out;
  position: absolute;
  left: 0;
  z-index: 1;
}

.botao-whatsapp-flutuante:hover .texto-hover {
  opacity: 1;
}

/* Evita efeitos de hover em dispositivos touch */
@media (hover: none) {
  .botao-whatsapp-flutuante:hover {
    width: 60px;
    border-radius: 50%;
    justify-content: flex-end;
  }

  .botao-whatsapp-flutuante:hover .texto-hover {
    opacity: 0;
  }

  .texto-hover {
    display: none;
  }
}

.podetudo {
  text-align: center;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.podetudo h2 {
  color: #001444;
  font-size: clamp(1.25rem, 5vw, 2rem);
  margin-bottom: 50px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: #f0f0f4;
  border-radius: 16px;
  width: 280px;
  padding: 40px 20px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, #ffc107, #ce6b01);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.icon-circle img {
  width: 30px;
  height: 30px;
}

.card hr {
  width: 30px;
  height: 3px;
  background: #ffc107;
  border: none;
  margin: 20px auto;
}

.card p {
  font-size: 16px;
  color: #333;
}
/*ANIMAÇÃO COM JS PARA OS ITENS SAIREM DA LATERAL PARA A POSIÇÃO*/
.imag, .card, .cardp {
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* Sai da esquerda */
.slide-esquerda {
  transform: translateX(-50px);
}

/* Sai da direita */
.slide-direita {
  transform: translateX(50px);
}

/* Quando aparece na tela */
.visivel {
  transform: translateX(0);
  opacity: 1;
}
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
}

h2 {
  text-align: center;
  font-weight: 700;
  font-size: 23px;
  margin-bottom: 13px;
  color: #001444;
}

.hero {
  background: #fef7e0;
  display: flex;
  flex-direction: column;
  padding: 1rem 50px;
  gap: 1.5rem;
  width: 100%;
  margin-top: 36px;
}

/* Estilos da coluna esquerda */
.hero-left {
  display: flex;
  flex-direction: column;
  /* Organiza em coluna */
  justify-content: center;
  /* Alinha verticalmente no centro */
  align-items: flex-start;
  /* Alinha tudo à esquerda */
  text-align: left;
  gap: 2px;
  /* Espaço entre os itens */
}

.hero-left .pretitle {
  font-size: 18px;
  color: #fdbf31;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.hero-left .highlighted {
  font-size: 19px;
  font-weight: 600;
  color: #c17700;
  margin: 0;
  padding: 0;
}

.hero-left h1 {
  font-size: 30px;
  font-weight: bold;
  color: #fdbf31;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.hero-left span {
  color: #c17700;
  font-size: 30px;
}

/* Estilos da coluna direita */
.hero-right p {
  font-size: 15px;
  align-items: flex-end;

  color: #333;
  max-width: 600px;
}

/* Estilos para telas maiores */
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    padding: 16px 90px;
  }

  .hero-left {
    flex: 1;
    padding-right: 2rem;
  }

  .hero-right {
    flex: 1;
  }
}

#box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.internet-para {
  margin: 0 70px;
  padding: 20px;
  justify-content: center;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.internet-para h2 {
  margin-top: 50px;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

.internet-para p {
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 13px;
  color: #ffffff;
  padding-top: 25px;
}

.imag {
  position: relative;
  width: 215px;
  height: 390px;
  overflow: hidden;
}

.internet-para img {
  border-radius: 25px;
  transition: 0.4s ease;
  width: 100%;
  height: 100%;
  display: block;
}

.imag:hover img {
  filter: brightness(60%);
}

.texto-sobre {
  font-family: "Arial", Helvetica, sans-serif;
  position: absolute;
  width: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  white-space: normal;
  overflow-wrap: break-word;
}

.imag:hover .texto-sobre {
  opacity: 1;
}

/* --- Responsividade --- */

@media (max-width: 1024px) {
  .internet-para {
    margin: 0 40px;
  }

  .imag {
    width: 180px;
    height: 320px;
  }

  .texto-sobre {
    width: 130px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #box {
    flex-wrap: wrap;
    justify-content: center;
  }

  .imag {
    width: 45%;
    /* duas colunas */
    height: auto;
    aspect-ratio: 172 / 310;
    /* mantém proporção */
    margin-bottom: 20px;
  }

  .texto-sobre {
    width: 90%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .podetudo h2 {
    margin-bottom: 30px;
    font-size: 25px;
    padding-bottom: 20px;
    padding-top: 40px;
  }

  .internet-para {
    margin: 0 15px;
    padding: 15px 5px;
    flex-direction: column;
    align-items: center;
  }

  .imag {
    width: 75%;
    /* uma coluna */
    height: auto;
    aspect-ratio: 172 / 310;
    box-shadow: 50px;
  }

  .texto-sobre {
    width: 90%;
    font-size: 13px;
  }

  .internet-para h2 {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.vantagens {
  background: url("img/fundo.png") center/cover no-repeat;
  padding: 60px 30px;
  font-family: Arial, Helvetica, sans-serif;
}

.vantagens .conteudo {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.vantagens .img-pessoa {
  max-width: 350px;
  height: auto;
  padding-left: 20px;
}

.vantagens .info {
  flex: 1;
  color: #c17700;
  text-align: center;
}

.vantagens h2 {
  font-size: 46px;
  color: #001444;
  margin-bottom: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.vantagens .icones {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vantagens .item {
  flex: 1;
  min-width: 180px;
}

.vantagens .item img {
  height: 60px;
  margin-bottom: 10px;
}

.vantagens .item p {
  font-size: 15px;
  color: #5f4521;
  line-height: 1.4;
  font-weight: 500;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.vantagens .botao {
  background-color: #ff9300;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bolder;
  font-size: 16px;
  display: inline-block;
  transition: background 0.3s;
}

.vantagens .botao:hover {
  background-color: #e57e00;
}

.pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 70px;
}

.plan {
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 5px 15px #ddb41f8c;
  width: 215px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  margin-right: 10px;
  height: 395px;
  transition: transform 0.9s ease;
}

.h2-plan {
  padding-top: 75px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}


.plan-header {
  background-color: #ff9300;
  width: 100%;
  border-radius: 50px 50px 0 0;
  color: white;
  padding: 20px 10px 1px;
  position: relative;
  text-align: center;
  font-weight: 500;
  font-size: 11px;
}

.plan-speed {
  font-size: 30px;
  font-weight: 900;
  margin: 1px 0 5px;
  color: white;
  font-family: "Roboto", sans-serif;
}

.price-container {
  color: #b97800;
  margin: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
}

.price-container .money {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
  margin-left: 10px;
}

.price-container .valor {
  position: relative;
  cursor: pointer;
  font-weight: 800;
  font-size: 55px;
  line-height: 1;
  display: inline-block;
}

.price-container .valor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 0.5px;
  width: 140%;
  background-color: #c17700;
  transform-origin: center;
  transform: translateX(-50%) scaleX(0.5);
  transition: transform 0.4s ease;
}

.plan:hover .price-container .valor::after {
  transform: translateX(-50%) scaleX(1);
}

.price-container .centavos {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.price-container .mensal {
  font-size: 8px;
  font-weight: bold;
  line-height: 1;
}

.price-container .centavos-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
  margin-bottom: 5px;
}

.plan-details {
  width: 80%;
  margin: 0 auto 1px;
  font-size: 12px;
  background-color: white;
}

.plan-details ul {
  list-style: none;
  padding: 0;
  margin: 2px 0 15px;
}

.plan-details li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 5px 0;
  font-weight: 600;
}

.btn {
  background-color: #ff9300;
  border: none;
  border-radius: 30px;
  padding: 10px 35px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(245, 131, 0, 0.4);
  transition: background-color 0.3s ease;
}

.btn a {
  color: white;
  text-decoration: none;
  font-size: 13px;
}

.btn:hover {
  background-color: #ce6b01;
}

.plan-finish {
  font-size: 10px;
  color: #000000;
  text-align: center;
  margin: 15px;
  padding-bottom: 20px;
}

/* ANIMAÇÃO DE APARECER */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.pricing-container,
.caixas {
  animation: fadeInUp 3s ease forwards;
}

/* HOVER ZOOM NOS PLANOS */
.plan:hover {
  transform: scale(1.05);
}

/* --- Responsividade --- */

@media (max-width: 1024px) {
  .pricing-container {
    margin: 0 40px;
  }

  .plan {
    width: 180px;
    height: 340px;
    margin-right: 8px;
  }

  .plan-header {
    font-size: 10px;
    padding: 18px 8px 1px;
  }

  .plan-speed {
    font-size: 26px;
  }

  .price-container .valor {
    font-size: 45px;
  }

  .plan-details {
    font-size: 11px;
  }

  .btn {
    padding: 8px 28px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    margin: 0 20px;
    align-items: center;
  }

  .plan {
    width: 90%;
    height: auto;
    /* permite altura automática */
    margin: 15px 0;
  }

  .plan-header {
    font-size: 13px;
    padding: 20px 10px 5px;
  }

  .plan-speed {
    font-size: 28px;
  }

  .price-container .valor {
    font-size: 50px;
  }

  .plan-details {
    font-size: 13px;
  }

  .btn {
    padding: 12px 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .h2-plan {
    padding-top: 90px;
    font-size: 25px;
    margin-bottom: 25px;
  }

  .plan {
    width: 95%;
    margin: 20px 0;
  }

  .plan-header {
    font-size: 15px;
    padding: 15px 8px 5px;
  }

  .plan-speed {
    font-size: 44px;
  }

  .price-container .valor {
    font-size: 60px;
  }

  .plan-details {
    font-size: 15px;
  }

  .btn {
    padding: 10px 30px;
  }
}
@media (max-width: 1100px) and (min-width: 769px) {
  .pricing-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 20px;
  }

  .plan {
    flex: 1 1 220px; /* largura mínima, mas deixa crescer */
    max-width: 240px; /* limite máximo */
    height: auto;
    margin-right: 0;
  }
}

.campanha-indicacao {
  font-family: "Segoe UI", sans-serif;
  color: #1e1e1e;
}

.backgroundorange {
  background-image: url(img/backgroundorange.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  width: 100%;
  position: relative;
}

.container-convite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 200px;
}

.imagem-amigos {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagem-amigos img {
  max-width: 350px;
  width: 100%;
}

.texto-convite {
  max-width: 480px;
}

.texto-convite h2 {
  font-family: "Figtree", sans-serif;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #001444;
}

.texto-convite p {
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #333333;
}

.texto-convite button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-family: "Figtree", sans-serif;
  border: 2px solid white;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.texto-convite button:hover {
  background-color: #ce6b01;
  color: white;
  border-color: transparent;
}

.texto-convite button img {
  width: 20px;
}

.texto-convite a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .backgroundorange {
    height: auto;
    padding: 40px 20px;
  }

  .container-convite {
    flex-direction: column;
    text-align: center;
  }

  .imagem-amigos {
    margin-bottom: 20px;
  }

  .texto-convite button {
    margin: 0 auto;
  }
}

.bloco-sobreposto {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  max-width: 1100px;
  margin: -100px auto 40px;
  /* sobrepõe a imagem */
  position: relative;
  z-index: 10;
  text-align: center;
}

.bloco-sobreposto h2 {
  font-size: 27px;
  color: #001444;
  margin-bottom: 50px;
  font-family: "Figtree", sans-serif;
}

.bloco-sobreposto h3 {
  font-size: 18px;
  color: #001444;
  font-family: "Figtree", sans-serif;
}

.cardp {
  background-color: #f0f0f4;
  border-radius: 16px;
  width: 280px;
  padding: 40px 20px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: 0.3s ease-in-out;
}

.cardsp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* centraliza os cards */
  gap: 24px;
  /* espaço entre eles */
}

.cardp {
  width: 230px;
}

.cardp:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 62px;
  height: 64px;
  background: linear-gradient(180deg, #ffc107, #ce6b01);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.icon-circle img {
  width: 30px;
  height: 30px;
}

.cardp hr {
  width: 30px;
  height: 3px;
  background: #ffc107;
  border: none;
  margin: 20px auto;
}

.cardp p {
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .cardsp {
    flex-direction: column;
    align-items: center;
  }
}

/* Topo da seção */
.topo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  padding: 40px 5%;
}

.topo .mensagem {
  flex: 1;
  min-width: 280px;
  max-width: 550px;
}

.topo .mensagem h1 {
  font-size: 40px;
  font-weight: 700;
  color: #001444;
  line-height: 45px;
}

.topo .mensagem h1 span {
  color: #001444;
}

.topo .mensagem p {
  font-size: 20px;
  padding-top: 30px;
  color: #555;
}

.topo .mensagem .promoção {
  font-size: 15px;
  color: #1e1e1e;
  padding-top: 10px;
}

.topo .mensagem a {
  font-size: 15px;
  color: #1e1e1e;
}

.topo .imagem img {
  max-width: 490px;
  width: 100%;
  border-radius: 16px;
}

/* Como participar */
.como-participar h2 {
  font-size: 28px;
  font-weight: bold;
  color: #001444;
  margin-bottom: 7%;
  text-align: center;
  padding-top: 4%;
}

.card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #001444;
}

@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    text-align: center;
  }

  .topo .imagem img {
    max-width: 100%;
  }

  .passos {
    flex-direction: column;
    align-items: center;
  }
}

/* Ajustes para telas menores que 480px */
@media (max-width: 480px) {
  .botao-whatsapp-flutuante {
    width: 52px;
    height: 52px;
    bottom: 12px;
    right: 12px;
  }

  .icone-whatsapp {
    width: 52px;
    height: 52px;
  }

  .botao-whatsapp-flutuante img {
    width: 30px;
    height: 30px;
  }

  .backgroundorange {
    height: auto;
    /* deixa a altura automática */
    padding: 40px 20px;
    /* espaçamento interno para não grudar */
  }

  .container-convite {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 100px;
    /* reduz margem inferior */
  }

  .imagem-amigos img {
    max-width: 90%;
    height: auto;
  }

  .texto-convite {
    max-width: 100%;
    padding: 0 10px;
  }

  .texto-convite h2 {
    font-size: 28px;
  }

  .texto-convite p {
    font-size: 16px;
  }

  .texto-convite button {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 0;
  }

  .bloco-sobreposto {
    margin: -80px 10px 30px;
    padding: 30px 15px;
    max-width: 95%;
  }

  .cardsp {
    flex-direction: column;
    gap: 20px;
  }

  .cardp {
    width: 100%;
    padding: 30px 15px 15px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    top: -25px;
  }

  .icon-circle img {
    width: 25px;
    height: 25px;
  }

  .cardp h3 {
    font-size: 16px;
  }

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

  .topo {
    flex-direction: column;
    padding: 20px 10px;
    gap: 20px;
  }

  .topo .mensagem {
    max-width: 100%;
    padding: 0 10px;
  }

  .topo .mensagem h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .topo .mensagem p {
    font-size: 16px;
    padding-top: 20px;
  }

  .topo .imagem img {
    max-width: 100%;
    border-radius: 12px;
  }
}

footer {
  background-color: #ff9500d8;
  font-family: "Figtree", sans-serif;
  background-image: repeating-linear-gradient(40deg,
      /* ângulo da linha */
      #00144410,
      /* cor da linha (com opacidade) */
      #0014440a 45px,
      /* espessura da linha */
      transparent 2px,
      transparent 30px
      /* espaçamento entre as linhas */
    );

  color: #ffffff;
  font-size: 14px;
}

footer a {
  color: white;
  text-decoration: none;
}

.footer-details {
  padding: 4px;
  background-color: #001444;
  margin-bottom: 90px;
}

.principal-box {
  display: flex;
  gap: 80px;
  /* Espaço entre colunas */
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px;
}

.footer-logo {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  height: 150px;
}

.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 350px;
}

.top-links {
  display: flex;
  gap: 40px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.img-footer-redes {
  display: flex;
  height: 25px;
  display: inline-block;
  padding-right: 15px;
  margin-top: 5px;
}

h4 {
  font-size: 18px;
  color: #001444;
  margin-bottom: 5px;
}

.duvida {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 50px;
}

.img-footer {
  width: 18px;
  height: auto;
}

.informacoes {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Espaço entre ícone e texto */
  margin-bottom: 10px;
}

.footer-address {
  flex: 2;
  max-width: 400px;
}

.footer-address p {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.desenvolvido {
  background-color: #e57e00a1;
  height: 100px;
  text-align: center;
  padding: 30px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
  font-family: "Figtree", sans-serif;
}

.desenvolvido span {
  font-weight: 600;
}

.whitee {
  width: 100%;
  height: 1px;
  background-color: white;
}

@media (max-width: 768px) {
  .principal-box {
    flex-direction: column;
    /* empilha as colunas verticalmente */
    gap: 30px;
    /* espaço maior entre os blocos */
    padding: 20px;
    align-items: center;
  }

  .footer-logo {
    padding: 20px 0;
  }

  .footer-logo img {
    height: 150px;
    /* reduz tamanho da logo */
  }

  .footer-middle {
    width: 100%;
    /* usa toda a largura disponível */
    align-items: center;
  }

  .top-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .footer-col {
    text-align: left;
  }

  .footer-address {
    max-width: 100%;
    width: 100%;
  }

  .footer-map iframe {
    height: 150px;
    /* mapa menor para caber em celular */
  }

  /* Centralizar o texto da dúvida */
  .duvida {
    margin-top: 30px;
    text-align: center;
  }
}