@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

body {
  font-family: "Roboto", sans-serif;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5vh;
  padding-bottom: 10vh;
}

.container {
  background-color: white;
  border-radius: 8px;

  max-width: 800px;
  width: 100%;
  overflow: hidden;
}
h1 {
  text-align: center;
  margin: 20px auto;
  font-size: 2.5rem;
}
h2 {
  color: #333;
  border-bottom: 2px solid #f31212;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.imgTitulo {
  width: 60%;
  margin: auto;
  display: flex;
}

.caracteristicas,
.modelos-2 {
  padding: 25px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* Tabela de Características */
.caracteristicas table tr td:first-child {
  font-weight: bold;
  color: #444;
  width: 60%; /* Ajuste para dar mais espaço à descrição */
}

.caracteristicas table tr td {
  padding: 12px 8px;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.caracteristicas table tr:last-child td {
  border-bottom: none;
}

.modelos-2 {
  font-family: "Roboto", sans-serif; /* Aplica a nova fonte */
  background-color: white;
  padding: 5px;
  color: #3e3e3e; /* Cor do texto um pouco mais suave */
}

.modelos-2 table {
  width: 100%;
  border-collapse: collapse;
}

.modelos-2 th,
.modelos-2 td {
  text-align: center; /* Alinhamento à esquerda */
  padding: 5px; /* Espaçamento interno */
}

.modelos-2 thead tr {
  /* A linha vermelha característica */
  border-bottom: 2px solid #c82c2c;
}

.modelos-2 th {
  font-weight: 400; /* Peso normal para o cabeçalho */
  padding-bottom: 6px; /* Espaço entre o texto e a linha */
  font-size: 1.2rem;
}

.modelos-2 td {
  font-weight: 400; /* Peso leve para os dados, criando o visual "fino" */
  font-size: 1rem;
}

/* Remove as bordas do estilo anterior, caso se apliquem */
.modelos-2 td,
.modelos-2 th {
  border: none;
}

/* Remove o fundo de linhas alternadas e hover, para um visual mais limpo */
.modelos-2 tbody tr:nth-child(even),
.modelos-2 tbody tr:hover {
  background-color: transparent;
}

.whatsapp-float {
  position: fixed;
  width: 3.75rem;
  height: 3.75rem;
  bottom: 2.5rem;
  right: 2.5rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

/* Container principal do slider */
.slider-container {
  position: relative; /* Essencial para posicionar os botões */
  max-width: 700px; /* Largura máxima do seu slider */
  margin: 20px auto; /* Centraliza o slider na página */
  overflow: hidden; /* Esconde partes dos slides que saem da área */
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* Onde os slides ficam */
.slider {
  display: flex; /* Coloca os slides um ao lado do outro */
  transition: transform 0.5s ease-in-out; /* Efeito de transição suave */
}

/* Cada slide individual */

.slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Estilo para as imagens dentro dos slides */
.slide img {
  max-width: 100%;
  height: auto;
  display: block; /* Remove espaços em branco abaixo da imagem */
}

/* Estilo dos botões de navegação */
.btn {
  position: absolute; /* Posiciona os botões sobre o slider */
  top: 50%;
  transform: translateY(-50%); /* Alinha verticalmente no centro */
  background-color: rgba(0, 0, 0, 0.37);
  color: white;
  border: none;
  cursor: pointer;
  padding: 12px;
  font-size: 18px;
  z-index: 100; /* Garante que os botões fiquem na frente */
  border-radius: 0 3px 3px 0;
}

.prev-button {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next-button {
  right: 0;
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.video-container {
  width: 100%;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  margin: 0 auto;
  padding: 0;
}

.video-container iframe {
  position: static;
  width: 800px;
  max-width: 100%;
  height: 500px;
  border: none;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  /*
    Aqui dentro você coloca todas as regras de CSS
    que devem ser aplicadas APENAS quando a largura
    da tela for de 768 pixels ou menor.
    
    Por exemplo:
  */
  .modelos-2 th {
    font-weight: 200; /* Peso normal para o cabeçalho */
    padding-bottom: 6px; /* Espaço entre o texto e a linha */
    font-size: 0.9rem;
  }

  .modelos-2 td {
    font-weight: 200; /* Peso leve para os dados, criando o visual "fino" */
    font-size: 0.8rem;
  }

  .caracteristicas table tr td {
    padding: 12px 8px;
    border-bottom: 1px solid #eee;
    font-size: 0.8rem;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .whatsapp-float {
    width: 5rem;
    height: 5rem;
  }
}
