/*BASE*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root{
    --cor-texto: #fff;
    --cor-fabrica: #0054CD;
    --cor-hover-azul:#0042a3;
    --cor-texto-escuro: #616060;
}

*{
    margin: 0;
    padding: 0;
    font-weight: 600;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

body{
    max-width: 100%;
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.hamburguer{
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.linha-divisoria {
  border-bottom: 1px solid darkgray;
  width: 90%;
  margin: 50px auto;
}

/*MENU*/
header {
    position: sticky; 
    top: 0; 
    z-index: 9999; 
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    height: 80px;
}

header .menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 100%;
}

header .logo img{
    width: 100%;
    max-width: 150px;
}

header nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
}

header .menu-item{
    margin-left: 10px;
    margin-right: 20px;
}

header .menu-item a:hover{
    color: var(--cor-hover-azul);
}

header .menu-item a{
    text-decoration: none;
    color: black;
    font-size: 18px;
}

#home {
    padding-bottom: 30px;
    width: 100vw;
    margin: 0;
    overflow: hidden;
}

#home .imagem-home {
    width: 100%;
    height: auto;
}

#home .imagem-home img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


/*SOBRE CONTAINER 1*/
#sobre .container h1{
    font-family: "Inter", sans-serif; /* Destaque moderno para títulos */
    font-size: 32px;
    font-weight: 700;
    color: var(--cor-fabrica);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

#sobre .container p{
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgb(97, 96, 96);
    text-align: justify;
    margin-bottom: 16px;
}

#sobre{
    margin-top: 10px;
    margin-bottom: 70px;
    height: 100%;
}

#sobre .conteudo{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sobre h5{
    font-size: 35px;
    font-weight: bolder;
    color: var(--cor-fabrica);
    font-family: "Inter", sans-serif;
}

#sobre p{
    font-size: 19px;
    color: var(--cor-texto-escuro);
    max-width: 600px;
    font-weight: 600;
    margin-right: 70px;
    line-height: 1.5;
    text-indent: 2em;
    text-align: justify;
}

#sobre img{
    max-width: 100%;
    border-radius: 10px;
}

#sobre .botao{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sobre .botao a{
    text-decoration: none;
    background-color: var(--cor-fabrica);
    color: white;
    padding: 10px 30px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    font-weight: 600;
    gap: 10px;
}

#sobre .botao a:hover{
    background-color: var(--cor-hover-azul);
    color: white;
}

/*SLIDER*/
.carrossel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  height: 400px;
}

.slide {
  display: none;
  width: 100%;
}

.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: none;
  color: darkgrey;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}


.esquerda {
  left: -30px;
}

.direita {
  right: -30px;
}

.carrossel:hover .seta {
  opacity: 1;
}

/*IND*/
#ind{
    margin-top: 30px;
    margin-bottom: 20px;
}

#ind .box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

#ind .box .item{
    width: 40%;
    margin-left: 1%;
    margin-right: 1%;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    height: 600px;
}

#ind .box .item:hover{
    box-shadow: 5px 5px 20px 20px rgba(25, 25, 25, 0.1);
    transition: box-shadow 0.4s ease;
}

/*SHIMMER*/
@keyframes shimmer {
   to {
      background-position-x: 0%
   }
}

#ind .box .item .nome{
    color: var(--cor-fabrica);
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 40px;
    padding-top: 20px;
    width: 100%;
}

#ind .box .item .nome .imagem-prod{
    padding-bottom: 60px;
}

#ind .container h1{
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--cor-fabrica);
    margin-bottom: 20px;
}


#ind .box .item .nome .texto{
    font-size: 18px;
}

#ind .botao{
    margin-top: 30px;
}
#ind .botao a{
    text-decoration: none;
    gap: 20px;
    background-color: var(--cor-fabrica);
    color: #fff;
    padding: 10px 30px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    font-size: 14px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15);
}

#ind .botao a:hover{
    background-color: var(--cor-hover-azul);
}

/*MAPA*/
#mapa{
    margin-bottom: 30px;
}

#mapa iframe{
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}

/*FOOTER*/
#footer{
    background-color: var(--cor-fabrica);
    padding-top: 20px;
    padding-bottom: 30px;
}

#footer .conteudo{
    text-align: center;
}

#footer .conteudo img{
    max-width: 250px;
    width: 100%;
    margin-bottom: 20px;
}

#footer p{
    color: #fff;
    font-size: 16px;
}

.container .rodape-itens{
    justify-content: space-around;
    align-items: center;
    display: flex;
}

.container .rodape-itens a{
    text-decoration: none;
    color: #fff;
    line-height: 2;
}

/*RESPONSIVIDADES*/
@media(max-width: 624px){
    header .menu {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    header .logo {
        flex-shrink: 0;
    }

    .hamburguer {
        display: block;
    }

    header #menu-nav {
        display: none;
    }

    header #menu-nav.show {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        background-color: white;
        top: 60px;
        left: 0;
        z-index: 9999;
        padding: 15px 0;
    }

    #sobre .texto p{
        width: 100%;
    }

    #sobre .texto .botao{
        align-items: center;
        justify-content: center;
    }

    #sobre .texto .botao a{
        gap: 10px;
    }
}

@media(max-width: 990px){
    .rodape-itens{
        flex-direction: column;
    }
}

@media(max-width: 768px){
    #sobre .conteudo{
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #sobre .container{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #sobre .imagem-sobre .carrossel {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
    }

    #sobre .imagem-sobre .slide {
        display: block;
        margin: 0 auto;
        max-width: 90%;
        height: auto;
        margin-top: 40px;
    }

    #sobre .seta {
        z-index: 10;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        padding: 10px;
        color: #888;
    }

    #sobre .seta.direita {
        right: -20px;
    }

    #sobre .seta.esquerda {
        left: -20px;
    }

    #sobre .botao{
        width: auto;
        align-items: center;
        justify-content: center;
        display: flex;
        white-space: nowrap;
    }

    #sobre .texto .botao a{
        gap: 10px;
    }

    #sobre p{
        max-width: 650px;
        display: flex;
        margin: 0 auto 16px auto !important;
    }

    #sobre .botao{
        margin-top: 50px;
        display: flex;
        justify-content: center;
        white-space: nowrap;
    }

    #sobre .botao a{
        font-size: 14px;
        text-align: center;
        display: inline-flex;
        gap: 10px;
    }

    .linha-divisoria{
        margin-top: 0;
    }
}

@media(max-width: 1024px){
    #sobre img{
        max-width: 90%;
    }

    #sobre p{
        margin-right: 50px;
    }

    .direita{
        right: 20px;
    }

    #ind .box .item{
    width: 90%;
    margin-left: 1%;
    margin-right: 1%;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    height: 600px;
    }  

}

@media(max-width: 380px){
    #sobre .texto p{
        width: 100%;
    }

    #sobre .botao{
        margin-top: 50px;
        display: flex;
        justify-content: center;
        white-space: nowrap;
    }

    #sobre .botao a{
        font-size: 14px;
        text-align: center;
        display: inline-flex;
        gap: 10px;
    }
}

@media(max-width: 425px){
    #sobre .conteudo {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin: 0;
    }

    #sobre p{
        font-size: 14px;
    }

    #sobre .imagem-sobre,
    #sobre .carrossel {
        padding: 0 !important;
        margin: 0 !important;
        height: auto;
    }

    .carrossel img.slide {
        display: block;
        width: 100%;
        height: auto;
        margin: 10px;
        padding: 0;
    }

    #ind .box .item {
    width: 90% !important;
    margin-left: 5% !important;
    margin-right: 5% !important;
    box-sizing: border-box;
  }
}



@media(max-width: 600px){
    #ind .container h1 {
    text-align: center;
    margin: 0 auto 20px auto;
    font-size: 22px;
    line-height: 1.3;
    width: 100%;
}

    #sobre .texto p{
        width: 100%;
        font-size: 16px;
    }

    #sobre .botao{
        margin-top: 20px;
        display: flex;
        justify-content: center;
        white-space: nowrap;
    }

    #sobre .botao a{
        font-size: 14px;
        text-align: center;
        display: inline-flex;
        gap: 10px;
    }

    .linha-divisoria{
    width: 90%;
    margin: 40px auto;
    height: 1px;
    background-color: #ccc;
    }

    #ind .box .item {
    width: 90% !important;  /* largura maior em telas pequenas */
    height: 600px !important; /* altura maior */
    margin-left: 5% !important;  /* margem para esquerda */
    margin-right: 5% !important; /* margem para direita */
    box-sizing: border-box;
  }

    #sobre {
    padding: 0;
    margin: 0;
}

#sobre .conteudo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

#sobre .imagem-sobre,
#sobre .carrossel {
    padding: 0 !important;
    margin: 0 !important;
    height: auto;
}

.carrossel img.slide {
    display: block;
    width: 100%;
    height: auto;
    margin: 10px;
    padding: 0;
}


}

@media(max-width: 720px){
    #sobre .texto p{
        width: 100%;
    }

    #sobre .botao{
        margin-top: 50px;
        display: flex;
        justify-content: center;
        white-space: nowrap;
    }

    #sobre .botao a{
        font-size: 14px;
        text-align: center;
        display: inline-flex;
        gap: 10px;
    }
}

@media(max-width: 320px){
    #ind .botao{
    margin-top: 30px;
    }

    #ind .botao a{
    text-decoration: none;
    gap: 10px;
    background-color: var(--cor-fabrica);
    color: #fff;
    padding: 10px 30px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    font-size: 10px;
    }

    #sobre .texto p{
        width: 100%;
    }

    #sobre .botao{
        margin-top: 50px;
        display: flex;
        justify-content: center;
        white-space: nowrap;
    }

    #sobre .botao a{
        font-size: 14px;
        text-align: center;
        display: inline-flex;
        gap: 10px;
    }
}

@media(max-width: 920px){
    .container .rodape-itens{
    justify-content: space-around;
    align-items: center;
    display: flex;
    flex-direction: column;
    }

    .container .rodape-itens a{
    text-decoration: none;
    color: #fff;
    }
}

@media (max-width: 375px) {
  #ind .box .item {
    height: 500px !important;
  }
}

@media (max-width: 320px) {
  #ind .box .item {
    height: 500px !important;
  }
}