/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: red;
  border-bottom: 4px solid yellow;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

/* Responsividade para celulares */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .banner {
    flex-direction: column;
  }

  .texto, .imagem {
    width: 100%;
    padding: 20px;
  }

  nav img {
    width: 28px;
    height: 28px;
  }

  .dropdown-content {
    position: static;
    width: 100%;
  }
}
.parceiros-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f7f7f7;
}

.parceiros-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.carrossel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}

.carrossel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  max-width: 80%;
  padding: 10px 0;
}

.carrossel img {
  width: 130px;
  height: auto;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.carrossel-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-bottom: 10px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .botao-whatsapp {
    width: 90%;
    max-width: 300px;
    margin: 10px auto;
  }

  body {
    overflow-x: hidden;
  }
}
/* Rodapé UNO - layout padrão */
.footer {
  background-color: #e60000;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer .logo {
  max-width: 120px;
  margin: 0 auto 20px;
}

.footer .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-direction: row;
}

.footer .menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.footer .social-icons {
  margin: 20px 0;
}

.footer .social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 22px;
  color: white;
}

.footer .button-simular {
  background-color: #00c853;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
}

/* Responsivo: no celular, menu vira coluna */
@media (max-width: 768px) {
  .footer .menu {
    flex-direction: column;
    gap: 10px;
  }

  .footer .button-simular {
    width: 100%;
    max-width: 300px;
  }
}
.vip-consignado {
  background-color: #fd0000;
  color: rgb(255, 253, 253);
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.vip-texto {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.vip-selo {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #fbc531;
  color: #ffffff;
  border-radius: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.vip-texto h1 {
  font-size: 2.5em;
  margin: 20px 0;
}

.vip-texto p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #fffcfc;
}

.vip-botoes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.botao-contratar {
  background-color: #0ea049;
  padding: 14px 28px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.botao-contratar img {
  width: 20px;
  height: 20px;
}

.botao-saiba {
  color: #fbc531;
  text-decoration: none;
  font-size: 1em;
  align-self: center;
}

.vip-imagem {
  flex: 1;
  min-width: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.vip-imagem img {
  max-width: 45%;
  border-radius: 10px;
}

.vip-tag {
  position: absolute;
  background-color: #ffd900;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  color: #000000;
}

.vip-tag.tag1 {
  top: 40%;
  left: -20px;
}

.vip-tag.tag2 {
  top: 10%;
  right: 5px;
}

.vip-tag.tag3 {
  bottom: 10%;
  right: 10%;
}

.vip-tag.tag-whatsapp {
  top: 10%;
  right: 35%;
  background: none;
}

.vip-tag.tag-whatsapp img {
  width: 80px;
}
.logo {
  height: 80px;
  width: auto;
  margin-left: 20px;
}
/*rodapé do site */
.footer {
  background-color: #ff0000;
  color: #fff;
  padding: 40px 20px;
  font-size: 15px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left img.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-left p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-left a {
  color: #ffffff;
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.created-by {
  margin-top: 15px;
  font-size: 11px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-left {
    text-align: center;
  }
}
/* css do botao rodape */
.footer-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #0b912c;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-icons img {
  width: 40px;  /* ajuste o tamanho conforme desejar: 30px, 40px, 50px */
  height: auto;
  margin-right: 10px; /* espaçamento entre os ícones */
  transition: transform 0.3s ease; /* animação suave ao passar o mouse */
}

.social-icons img:hover {
  transform: scale(1.1); /* aumenta levemente no hover para interação */
}
/*css do fgts*/
.banner-fgts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, rgba(226, 0, 0, 0.884), rgba(255, 0, 0, 0.836)), url('bg.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 100px 80px;
  min-height: 500px;
}

.texto-banner {
  max-width: 50%;
}

.texto-banner h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.texto-banner .destaque {
  color: #f8f40f;
}

.texto-banner p {
  font-size: 1.4rem;
  margin: 20px 0;
}

.btn-consulte {
  background-color: #0a8644;
  color: white;
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-consulte:hover {
  background-color: #00bb55;
}

.imagem-banner img {
  max-height: 420px;
  width: auto;
  border-radius: 20px;
}
