@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html,
body {
  overflow-x: hidden;
  background-color: #fff;
  color: #333;
  /* padding-top: 30px; */
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  display: flex;
  background: #ed1c24;
  height: 60px;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  color: #fff;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: 1px;
}

.menu {
  position: relative;
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.menu ul {
  display: flex;
  list-style: none;
}

.menu ul li a {
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: block;
}

.menu ul li a:hover,
.menu ul li a.selected {
  background-color: #000000;
  color: white;
}

button.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 11000;
}

button.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}

button.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

button.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

button.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  height: 350px;
  margin: 0 auto;
  gap: 20px;
}

.carousel .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 350px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel .slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel .slide picture,
.carousel .slide img {
  width: 100vw;
  height: 350px;
  max-width: 100vw;
  object-fit: cover;
  display: block;
}

.hero-carousel {
  position: relative;
  height: 550px;
  overflow: hidden;
  margin-top: 60px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide picture,
.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.slide h2 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 90%;
  line-height: 1.3;
  word-break: break-word;
}

.alinhamento-direita {
  justify-content: flex-end;
  text-align: right;
}

.alinhamento-meio-esquerda,
.alinhamento-esquerda {
  justify-content: flex-start;
  text-align: left;
}

.alinhamento-meio-esquerda {
  padding-left: 40px;
}

.alinhamento-esquerda {
  padding-left: 40px;
}

.carousel-flutuante {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  background: transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-track {
  display: flex;
  /* A animação será feita via JS para controlar a distância */
}

.carousel-track img {
  width: 378px;
  height: 200px;
  object-fit: cover;
  margin: 0 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: #fff;
  flex-shrink: 0;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 2.2em;
  color: #00aeb2;
  margin-bottom: 40px;
}

.texto-sobre {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

.sobre-imagens {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sobre-imagens img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.sobre-imagens img:hover {
  transform: scale(1.05);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-bottom: 10px;
  color: #ed1c24;
}


.carrossel-imagens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
}

.carrossel-imagens img {
  width: 100%;
  max-width: 378px;
  height: 100px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.carrossel-imagens img:hover {
  transform: scale(1.02, 1.01);
}

.galeria-imagens {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.galeria-imagens img {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.galeria-imagens img:hover {
  transform: scale(1.05);
}

.nossas-lojas {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.nossas-lojas h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #00aeb2;
}

.nossas-lojas p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

.loja {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loja-principal {
  margin-bottom: 40px;
}

.loja-principal .endereco {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-top: 12px;
  text-align: center;
}



.loja-principal img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;

  
}

.loja-principal img:hover {
  transform: scale(1.05);
}

.grid-lojas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

.loja img {
  width: 100%;
  height: auto;
  max-width: 275px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;

  
}

.loja img:hover {
  transform: scale(1.05);
}

.loja .endereco {
  margin-top: 8px;
  font-size: 15px;
  color: #555;
  font-weight: 500;
  line-height: 1.4;
}




.grid-lojas img {
  max-width: 275px;
  max-height: 200px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.grid-lojas img:hover {
  transform: scale(1.05);
}



form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

button {
  background-color: #ed1c24;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #000000;
}



.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 0 20px;
  background-color: #f8f8f8;
}

.redes-sociais a {
  font-size: 2.5rem;
  transition: 0.3s ease;
}

.redes-sociais .yt {
  color: #ff0000;
}

.redes-sociais .ig {
  color: #c32aa3;
}

.redes-sociais .fb {
  color: #1877f2;
}

.redes-sociais a:hover {
  transform: scale(1.15);
  opacity: 0.9;
}

footer {
  background-color: #ed1c24;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 20px;
  z-index: 9999;
  animation: pulse 1.5s infinite;
}

.whatsapp img {
  width: 120px;
  height: 120px;
  border-radius: 20%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@keyframes flutuar {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.oculos-animado {
  animation: flutuar 1.5s ease-out forwards;
  transform: translateY(30px);
  opacity: 0;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .grid-lojas {
    grid-template-columns: 1fr;
  }

  .nossas-lojas p {
    font-size: 16px;
    text-align: justify;
  }
}

@media (max-width: 767px) {
  .logo {
    max-width: 180px;
  }

  .menu {
    display: none;
  }

  .slide img {
    height: 60vh;
  }

  button.menu-toggle {
    display: flex;
  }

  .menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ed1c24;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .menu ul {
    flex-direction: column;
    text-align: center;
  }

  .menu ul li a {
    padding: 15px 20px;
    text-transform: uppercase;
    color: #ffffff;
    border-bottom: 0.1px solid #ffffff63;
  }

  .menu ul li a:hover,
  .menu ul li a.selected {
    background-color: #000000;
    color: white;
  }

  .hero-carousel {
    height: 300px;
  }

  .carousel-track img {
     
    width: 80vw;      
    height: auto;     
    max-width: 150px;
  
  }

  .slide h2 {
    font-size: 1.5rem;
  }

    .nossas-lojas p {
    font-size: 16px;
    text-align: justify;
  }

  .loja img,
  .grid-lojas img {
    max-width: 100%;
    height: auto;
  }

  .loja .endereco {
    font-size: 14px;
  }

}



@media (max-width: 1024px) {
  .grid-lojas {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .carousel {
    width: 100vw;
    max-width: 1920px;
    height: 600px;
    max-height: 600px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .carousel .slide,
  .carousel .slide picture,
  .carousel .slide img {
    width: 100%;
    height: 600px;
    max-width: 1920px;
    max-height: 600px;
    object-fit: cover;
    margin-left: 10px;
    margin: 0;
    display: block;
  }


}
