* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 80px;

  background: #000;
  color: #fff;

  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}

.header .container {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}


.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 55px;
  width: auto;

  object-fit: contain;
  display: block;
}

.categoria-bloco{
    margin-bottom:60px;
}

.categoria-bloco h2{
    margin-bottom:20px;
}





/* HERO */
.hero {
  position: relative;
  margin-top: 80px;
  width: 100%;
  overflow: hidden;

  aspect-ratio: 1920 / 784;
}
.slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  background: black;
  display: block;
}


/* PRODUCTS */
.products {
  margin: 80px auto;
}

.scroll-indicator {
  display: none;
  text-align: right;
  margin-bottom: 10px;
  padding-right: 10px;
}

.scroll-indicator span {
  font-size: 24px;
  animation: arrowMove 1s infinite;
  display: inline-block;
}

/* animação da seta */
@keyframes arrowMove {
  0% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(8px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.5; }
}



.carousel {
    display:flex;
    gap:20px;
    overflow:auto;
    padding-bottom:10px;
}

.card {
    min-width:260px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    flex-shrink:0;
}
.card img {
    width:100%;
    height:260px;
    object-fit:contain;
    background:#fff;
    display:block;
    cursor:pointer;
}


.caption{
    padding:15px;
    background:#fff;
    color:#000;
    text-align:center;

    position:static;
    opacity:1;
    transform:none;

    width:100%;
}

.caption h3{
    margin-bottom:10px;
}

.caption p{
    font-size:14px;
    margin-bottom:10px;
}


/* FOOTER */
.footer {
  background: #000;
  color: white;
  padding-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  gap: 40px;

  padding: 0 20px 40px;

  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column p {
  color: #ccc;
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #ccc;
  text-decoration: none;

  margin-bottom: 12px;

  transition: 0.3s;
}

.footer-column a:hover {
  color: white;
}

.footer-column i {
  font-size: 18px;
}

/* pagamentos */

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payments img {
  width: 60px;
  background: white;
  padding: 5px;
  border-radius: 6px;
}

/* rodapé final */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);

  text-align: center;

  padding: 20px;

  color: #aaa;
  font-size: 14px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  padding: 20px;
  border-radius: 100%;
  text-decoration: none;
}

section {
  scroll-margin-top: 100px;
}


.modal-produto{
    display:none;

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.8);

    z-index:99999;

    justify-content:center;
    align-items:center;
}

.modal-conteudo{

    background:#fff;

    width:90%;
    max-width:600px;

    border-radius:10px;

    overflow:hidden;

    position:relative;
}

.modal-conteudo img{

    width:100%;
    height:auto;
    display:block;
}

.modal-conteudo h2{

    padding:15px;
}

.modal-conteudo p{

    padding:0 15px 15px;
}

#modalPreco{

    padding:0 15px 20px;

    font-size:22px;
    font-weight:bold;
}

.fechar{

    position:absolute;

    top:10px;
    right:15px;

    font-size:35px;

    cursor:pointer;

    color:white;

    text-shadow:0 0 5px black;
}


















/* RESPONSIVO */
@media(max-width: 768px) {

    .header {
    height: 70px;
  }
  .nav {
    position: absolute;
    top: 60px;
    padding:8px;
    right: 0;
    background: black;
    flex-direction: column;
    width: 200px;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    aspect-ratio: 16 / 9;
    margin-top: 70px;
  }
    .logo-img{
    height:45px;
  }
    .card {
    min-width: 80%;
  }
    .caption {
    opacity: 1;
    transform: translateY(0);
  }
    .scroll-indicator {
    display: block;
  }
  .footer-container {
  flex-direction: column;
}
.modal-produto{
        padding:15px;
    }

    .modal-conteudo{

    width:100%;
        height:auto;

        max-height:95vh;

    }

    .modal-conteudo img{

    width:100%;
    height:auto;

    max-height:400px;

    object-fit:contain;
    }

    .modal-conteudo h2{

        font-size:22px;

        padding:15px;
    }

    .modal-conteudo p{

        padding:0 15px 15px;

        font-size:15px;

        line-height:1.5;
    }

    #modalPreco{

        padding:0 15px 20px;

        font-size:22px;
    }

    .fechar{

        top:5px;
        right:12px;

        font-size:40px;

        z-index:10;
    }


}