* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
}
/* ********************** */
.compartilhar {
  margin: 30px 0;
  text-align: center;
}

.compartilhar h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.btn-share {
  display: inline-block;
  margin: 5px 10px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-share.whatsapp {
  background-color: #25D366;
}

.btn-share.facebook {
  background-color: #1877F2;
}

.btn-share.instagram {
  background-color: #E1306C;
}

.btn-share:hover {
  opacity: 0.8;
}


/* ********************** */

body {
  background: #fff;
  color: #020202;
}

/* ********************** */
.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  padding: 9px 12px;
  border-radius: 65%;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fixo img {
  width: 32px;
  height: 32px;
  filter: invert(1); /* deixa o ícone branco */
}

.whatsapp-fixo:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* ******************** */

/* Topo */
.top-bar {
  background: #fcdb00;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 10px;
}

.address-line {
  display: flex;
  align-items: center;
  gap: 6px; /* espaço entre ícone e texto */
}

a {
  text-decoration: none;
  color: #000000;
}

.whts {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

header {
  background-color: #000;
}

.logo-ano {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.logo-primario {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  margin-top: 20px;
}

.logo-primario img {
  width: 400px;
}

.logo h1 {
  font-size: 28px;
  font-weight: bold;
}

/* Menu */
.menu {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #fcdb00;
}

/* *********************menunav*********************** */
/* Botão que abre o menu */
.mobile-menu-button {
  display: none;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  margin: 15px auto;
}

/* Fundo escuro atrás do menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Menu em si */
.mobile-menu {
  text-align: center;
  width: 90%;
  max-width: 320px;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 1.9s ease;
  position: relative;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 25px;
  display: block;
  margin: 30px 0;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: #ffd700;
}

/* Botão de fechar */
.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Quando ativo */
.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateY(0);
  opacity: 1;
}

/* Mostrar botão e esconder menu padrão em telas pequenas */
@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
    background-color: #000000;
  }

  .menu {
    display: none;
  }
}

/* *********************menunav*********************** */

/* ===================== */
/* RESPONSIVIDADE MOBILE */
/* ===================== */
@media screen and (max-width: 768px) {
  .top-bar {
    font-size: 10px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* *********************************************** */

/* Conteúdo principal */
.car-container {
  max-width: 1400px;
  margin: 10px auto;
  padding: 0 20px;
}

.car-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.car-brand {
  flex: 1 1 300px;
  margin-top: 50px;
}

.car-brand img {
  width: 70px;
}

.car-brand h2 {
  font-size: 55px;
}

.car-brand h3 {
  font-size: 33px;
  margin: 5px 0;
}

.highlight {
  background: #fcdb00;
  padding: 8px 5px;
  font-size: 18px;
  border-radius: 5px;
  color: rgb(0, 0, 0);
}

.car-brand p {
  font-size: 18px;
  margin: 5px 0;
}

.car-brand h4 {
  font-size: 40px;
  color: #000;
  margin: 10px 0;
  font-weight: 500;
}

.car-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
}

/* Botão */
.interesse {
  margin: 30px auto;
  display: block;
  padding: 8px 15px;
  background: #fcdb00;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  transition: all 0.3s ease;
}

.interesse:hover {
  background: #000;
  color: #fff;
}

/* Destaques */
.features {
  display: flex;
  justify-content: space-around;
  margin: 40px 0;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}

.features div {
  font-size: 14px;
  flex: 1 1 100px;
}

.features span {
  font-size: 22px;
  display: block;
  margin-bottom: 5px;
}

/* ===================== */
/* RESPONSIVIDADE MOBILE */
/* ===================== */
@media screen and (max-width: 768px) {
  .top-bar {
    font-size: 10px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .car-info {
    flex-direction: column;
    align-items: center;
  }

  .car-container{
    margin-top: -30px;
  }

  .car-brand,
  .car-image {
    width: 100%;
    text-align: center;
  }

  .car-brand img {
    margin: auto;
  }

  .highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .interesse {
    width: 100%;
    max-width: 300px;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    margin: 40px auto;
    max-width: 400px; /* opcional para centralizar e limitar a largura */
  }

  .features div {
    font-size: 14px;
    /* flex removido porque agora é grid */
  }

  .car-image img {
    width: 100%;
    max-width: 100%;
  }
}

/* *********************************************** */

.title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  background: linear-gradient(
    to bottom,
    rgb(8 42 123 / 35%) 50%,
    rgb(255 255 255 / 0%) 76%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.carousel-container {
  width: 100%;
  height: 450px;
  position: relative;
  perspective: 1000px;
  margin-top: 80px;
}

.carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
  position: absolute;
  width: 700px;
  height: 480px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
  z-index: 10;
  transform: scale(1.1) translateZ(0);
}

.card.center img {
  filter: none;
}

.card.left-2 {
  z-index: 1;
  transform: translateX(-400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.card.left-2 img {
  filter: grayscale(100%);
}

.card.left-1 {
  z-index: 5;
  transform: translateX(-200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.card.left-1 img {
  filter: grayscale(100%);
}

.card.right-1 {
  z-index: 5;
  transform: translateX(200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.card.right-1 img {
  filter: grayscale(100%);
}

.card.right-2 {
  z-index: 1;
  transform: translateX(400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.card.right-2 img {
  filter: grayscale(100%);
}

.card.hidden {
  opacity: 0;
  pointer-events: none;
}

.member-info {
  text-align: center;
  margin-top: 40px;
  transition: all 0.5s ease-out;
}

.member-name {
  color: rgb(8, 42, 123);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.member-name::before,
.member-name::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 100px;
  height: 2px;
  background: rgb(8, 42, 123);
}

.member-name::before {
  left: -120px;
}

.member-name::after {
  right: -120px;
}

.member-role {
  color: #848696;
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 0;
  margin-top: -15px;
  position: relative;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(8, 42, 123, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: rgb(8, 42, 123);
  transform: scale(1.2);
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 42, 123, 0.6);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  border: none;
  outline: none;
  padding-bottom: 4px;
}

.nav-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
  left: 20px;
  padding-right: 3px;
}

.nav-arrow.right {
  right: 20px;
  padding-left: 3px;
}

@media (max-width: 768px) {
  .title {
    font-size: 1.5rem;
  }

  .carousel-container {
    margin-top: -60px;
  }

  .dots {
    margin-top: -80px;
  }

  .card {
    width: 265px;
    height: 220px;
  }

  .card.left-2 {
    transform: translateX(-250px) scale(0.8) translateZ(-300px);
  }

  .card.left-1 {
    transform: translateX(-120px) scale(0.9) translateZ(-100px);
  }

  .card.right-1 {
    transform: translateX(120px) scale(0.9) translateZ(-100px);
  }

  .card.right-2 {
    transform: translateX(250px) scale(0.8) translateZ(-300px);
  }

  .member-name {
    font-size: 2rem;
  }

  .member-role {
    font-size: 1.2rem;
  }

  .member-name::before,
  .member-name::after {
    width: 50px;
  }

  .member-name::before {
    left: -70px;
  }

  .member-name::after {
    right: -70px;
  }
}

/* ******************************************************* */

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  padding: 40px 20px;
  margin-top: 55px;
}

.corner {
  width: 40px;
  height: 40px;
  border: 4px solid #f50101;
  position: absolute;
}

.corner.tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.corner.tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.corner.bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.corner.br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.garantia-h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

h2 strong {
  font-weight: bold;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.column {
  flex: 1;
  min-width: 250px;
}

.column p {
  margin: 10px 0;
}

.column p::before {
  content: "» ";
  color: #f3c600;
}

.ficha {
  margin: 30px auto;
  display: block;
  padding: 8px 15px;
  background: #fcdb00;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  transition: all 0.3s ease;
}

.ficha:hover {
  background: #000;
  color: #fff;
}

.container-itens {
  max-width: 1300px;
  margin: 0 auto;
}

.container-itens h1 {
  margin-left: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.item {
  background-color: #fff;
  padding: 5px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.obs {
  text-align: center;
  margin-top: 30px;
}

.resumo {
  display: flex;
  gap: 160px;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.6;
  text-align: justify;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .resumo {
    padding: 15px;
    font-size: 0.8rem;
    flex-direction: column;
    gap: 15px;
    margin-top: 5px;
  }

  .obs {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .resumo {
    padding: 10px;
    font-size: 0.5rem;
  }
}

.item::before {
  content: "✔️";
  font-size: 18px;
  color: #4caf50;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

video {
  height: 60vh;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .columns {
    flex-direction: column;
    align-items: center;
  }

  .container {
    margin: 10px 30px;
  }
}

/* ******************************************************* */

.garantia {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.garantia .conteudo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.lado-esquerdo {
  flex: 1;

  min-width: 300px;
}

.lado-direito {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.lado-direito img {
  max-width: 100%;
  height: auto;
}

.logo-ano {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.anos {
  background-color: #f50101;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

.anos .numero {
  font-size: 36px;
  line-height: 1;
}

.anos .texto {
  font-size: 14px;
}

.destaque {
  color: #f50101;
  font-weight: bold;
}

/* Responsivo */
@media (max-width: 768px) {
  .garantia .conteudo {
    flex-direction: column;
    text-align: center;
  }

  .garantia{
    padding: 0 20px;
  }

  .logo-ano {
    flex-direction: column;
    justify-content: center;
  }

  .lado-esquerdo,
  .lado-direito {
    width: 100%;
  }

  .anos {
    margin-top: 20px;
  }
}

/* *********************************************** */

.formulario-whatsapp {
  background: #fcdc00;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #333;
}

.formulario-whatsapp h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.formulario-whatsapp h1 strong {
  color: #111;
}

.formulario-whatsapp p {
  font-size: 16px;
  margin-bottom: 30px;
}

.inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.inputs input {
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 250px;
  font-size: 16px;
}

.lgpd {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-inline: auto;
  text-align: left;
}

button {
  background-color: #b59e00;
  color: white;
  padding: 4px 4px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 600px) {
  .inputs {
    flex-direction: column;
  }

  .inputs input {
    width: 100%;
  }

  .lgpd {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo-primario img {
    width: 300px;
  }
}

/* ****************************************** */

/* Container centralizador */
.container-mapa {
  margin: 0 auto;
}

/* Banner e mapa ocupam 100% da largura do container */
.banner img,
.mapa iframe {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  max-width: 1000px;
  margin: 0 auto;
}

/* Remover espaçamento entre as seções */
.banner,
.mapa {
  margin: 0;
  padding: 0;
}

/* *********************************** */

.rodape {
  background-color: #000;
  padding: 20px 0;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}

.conteudo-rodape {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 50px;
}

.info-esquerda,
.info-direita {
  flex: 1;
  min-width: 220px;
}

.info-direita a{
  color: white;
}

.logo-centro img {
  max-height: 60px;
  max-width: 180px;
}

.info-esquerda strong {
  font-size: 16px;
  color: #fff;
}

.info-esquerda p,
.info-direita p {
  margin: 5px 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .conteudo-rodape {
    flex-direction: column;
    text-align: center;
  }

  .logo-centro {
    order: -1;
    margin-bottom: 10px;
  }
}

/* correção whats */

@media (max-width: 480px) {
  .whatsapp-fixo {
    bottom: 15px;
    right: 15px;
    padding: 8px;
    max-width: 60px;
    max-height: 60px;
    overflow: hidden;
  }

  .whatsapp-fixo img {
    width: 28px;
    height: 28px;
  }
}

/* ********************************************* */

/* Esconder/mostrar carrosseis por resolução */
.carousel-desktop {
  display: block;
}
.carousel-mobile {
  display: none;
}
@media (max-width: 768px) {
  .carousel-container {
    display: none;
  }

  .dots{
    display: none;
  }
  .carousel-mobile {
    display: block;
  }
}

/* Carrossel Mobile */
.carousel-mobile {
  margin: 20px 0;
  text-align: center;
}
.carousel-mobile .imagem-principal img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.carousel-mobile .miniaturas {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  gap: 8px;
  margin-top: 10px;
  padding-bottom: 8px;
}
.carousel-mobile .miniaturas img {
  height: 60px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}
.carousel-mobile .miniaturas img.selecionada {
  border-color: #007bff;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  margin: 60px auto 0 auto;
}
.modal .fechar {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.modal .botoes-navegacao {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 35px;
  padding: 0 20px;
  transform: translateY(-50%);
}
.modal .botoes-navegacao span {
  cursor: pointer;
  user-select: none;
}

.carousel-mobile .imagem-principal img {
  transition: all 0.3s ease-in-out;
}
