@charset 'UTF-8';

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url(https://db.onlinewebfonts.com/c/f57e019dfad2821faf2eccbdca80924f?family=Prisma+Pro+W01+Regular);

/* Import da fonte já está feito */
@import url('https://db.onlinewebfonts.com/c/f57e019dfad2821faf2eccbdca80924f?family=Prisma+Pro+W01+Regular');

/* Fonte especial só para o banner */
.banner .banner-text h1,
.banner .banner-text h2 {
    font-family: 'Prisma Pro W01 Regular', sans-serif;
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: "Inter", sans-serif;
}

body{
    background-color: #f1f6fc31;
}

section,footer{
    padding: 54px 0;
}

h3{
    font-size: 50px;
}

p{
    color: #0000009c;
}

.container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.btn{
    background-color: #3b64c4;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: 0.1s;
}

.btn.animate-btn{
    animation: animate-outline 1s ease-out infinite;
}

.btn:hover{
    background-color: #0000ff;
}

@keyframes animate-outline {
    from{
        outline: 0px solid #0000ff;
    }
    to{
        outline: 15px solid #4f9bf900;
    }
}

header{
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}

nav ul{
    display: flex;
    align-items: center;
}

nav ul a{
    color: white;
    margin: 0 25px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
}

nav ul a:not(.btn)::after{
    content: "";
    background-color: #3b64c4;
    height: 3px;
    width: 0%;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}

nav ul a:hover::after{
    width: 100%;
}

/*menu mobile*/
nav .menu-icon{
    cursor: pointer;
    font-size: 25px;
    color: white;
    display: none;
}

nav .close-icon{
    display: none;
    font-size: 30px;
    color: white;
}

.banner{
    display: flex;
    justify-content: center;
}

.banner .banner-text{
    margin: 150px;
    text-align: center;
    padding: 0 90px;
}

.banner .banner-text h1{
    font-size: 96px;
    color: white;
}

.banner .banner-text p{
    font-size: 20px;
    color: #ffffffb7;
    font-weight: lighter;
    margin: 18px 0;
}

/* faca mais */
.faca-mais .container{
    display: flex;
    align-items: center;
}

.faca-mais .faca-mais-text{
    width: 50%;
    padding: 0 40px;
}

.faca-mais .faca-mais-text h3{
    font-size: 56px;
}
.faca-mais .faca-mais-text p{
    margin: 5px 0 10px 0;
}

.faca-mais .faca-mais-img{
    width: 50%;
}

.faca-mais .faca-mais-img img{
   width: 100%;
   height: auto;
}

/* CONFIGURAÇÃO DO CARD*/

.produtos h3{
    text-align: center;
}

.produtos p{
    margin-bottom: 20px;
    text-align: center;
}

.cards{
    display: flex;
    justify-content: center;
}

.produtos .cards-item{
    background-color: #3b64c4;
    margin: 15px;
    border-radius: 14px;
    text-align: center;
    width: 350px;
}

.produtos .cards-item img{
    border-radius: 100%;
    width: 300px;
    display: block;
    margin: 10px auto;    
}

.produtos .cards-item .nome-user {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.produtos .cards-item .produtos-user{
    font-size: 15px;
    padding: 0 15px;
    transition: 0.3s;
}

.produtos .cards-item .estrelas{
    margin: 15px 0;
    border-top: 2px solid #71767a23;
}

.produtos .cards-item .estrelas i{
    color: #4f9cf9;
    margin-top: 15px;
    font-size: 20px;
    transition: 0.3s;
}

.produtos .cards-item:hover{
    background-color: #3b64c4;
    margin-top: -5px;
}

.produtos .cards-item:hover .nome-user,
.produtos .cards-item:hover .produtos-user,
.produtos .cards-item:hover .estrelas i
{
    color: white;
}
 
.cards-item::-webkit-scrollbar{
    width: 0;
}

/* END CONFIGURAÇÃO DO CARD*/

/*Clientes*/
.clientes h3, .clientes  p{
    text-align: center;
}

.clientes .container div{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/*Footer*/
.footer{
    background-color: #3b64c4;
    text-align: center;   
}

.footer i{
    color: #3b64c4;
    font-size: 19px;
    background-color: white;
    padding: 10px;
    margin: 3px;
    border-radius: 10px;
}

.footer p{
    margin-top: 10px;
    color: white;
}

/*Pagina Sobre*/

.sobre .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sobre .sobre-text{
    width: 50%;
    padding-right: 40px;
}

.sobre .sobre-text p{
    margin: 18px 0;
    color: #000000a6;
}

.sobre .sobre-img{
    width: 50%;
}

.sobre .sobre-img img{
    width: 100%;
    border-radius: 10px;
}
/*end pagina Sobre*/

/*Pagina Produtos*/
.produtos h3{
    text-align: center;
}

.produtos .container > p{
    text-align: center;
}

.produtos .rows-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Distribui igualmente os cards */
    gap: 20px; /* Espaçamento entre os cards */
}

.produtos .rows-cards-item {
    background-color: #11a80c46; /* Fundo do card */
    flex: auto; /* 4 cards por linha, considerando o espaçamento */
    max-width: 250px;
    padding: 20px;
    border-radius: 14px;
    transition: 0.3s;
    text-align: center;
}

.produtos .rows-cards-item img {
    width: 100%; /* Imagem ocupa toda a largura do card */
    max-width: 200px; /* Tamanho máximo para evitar distorção */
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
}


.produtos .rows-cards-item p.nome-produto {
    margin: 10px 0;
    font-size: 16px; /* Tamanho reduzido */
    font-weight: bold; /* Destaca o nome do produto */
    color: #333;
}

.produtos .rows-cards-item p.descricao-produtos,
.produtos .rows-cards-item p.tipo-produto {
    font-size: 14px; /* Tamanho menor para os detalhes */
    color: #555; /* Texto em tom mais claro */
    line-height: 1.5;
}

/* Responsividade: Reduzir para 2 produtos por linha em telas menores */
@media (max-width: 768px) {
    .produtos .rows-cards-item {
        flex: 1 1 calc(50% - 20px); /* 2 cards por linha */
        max-width: calc(50% - 20px);
    }
}

/* Responsividade: 1 produto por linha em telas muito pequenas */
@media (max-width: 500px) {
    .produtos .rows-cards-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}




/*dados */

.dados{
    background-color: #11a80c46;
}

.dados .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.dados .dados-item{
    text-align: center;
    margin: 15px;
    color: #000000be;
}

.dados .dados-item img{
    background-color: #11a80c;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 15px;
    width: 80px;
}

.dados .dados-item p{
    font-size: 18px;
}

.dados .dados-item p strong{
    font-size: 28px;
}

/*end Pagina produtos*/

/*Pagina de contatos*/

.contato-info{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.contato-info .left-side{
    width: 50%;
    padding: 30px;
    background-color: #007a06;
    border-radius: 14px;
    margin-right: 50px;
    height: fit-content;
}

.contato-info .left-side div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contato-info .left-side div i{
    font-size: 24px;
    margin-right: 20px;
    color: white;
}

.contato-info .left-side p{
    font-size: 17px;
    color: white;
}

.contato-info .right-side{
    width: 50%;
}

.contato-info .right-side input{
    display: block;
    width: 100%;
    margin-bottom: 10px;
    height: 47px;
    padding: 15px;
    border-radius: 9px;
    transition: 0.3s;
    border: 1px solid #f1f1f1;
    color: #212121;
    font-weight: lighter;
}

.contato-info .right-side input:focus,
.contato-info .right-side textarea:focus{
    border-color: #4f9cf9;
}

.contato-info .right-side textarea{
    border: 1px solid #f1f1f1;
    color: #212121;
    border-radius: 9px;
    margin-bottom: 10px;
    padding: 15px;
    width: 100%;
    transition: 0.3s; 
    resize: none;
}

.contato-info .right-side button{
    border: none;
}

/*end Pagina de contatos*/

@media(max-width: 830px){
    /*menu mobile*/
    .ul{
        position: fixed;
        top: 0;
        left: 0;
        background-color: #184b88;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        clip-path: circle(0% at 100% 0);
        transition: 0.7s;
    }

    .ul.open{
        clip-path: circle(141.4% at 100% 0);
    }

    .ul a{
        margin: 10px 0;
        font-size: 16px;
    }

    nav .menu-icon{
        display: block;
    }

    nav .close-icon{
        display: block;
        position: absolute;
        top: 46px;
        right: 28px;
    }

    /*Pagina home responsivo*/

    .faca-mais .faca-mais-text{
        margin-top: 10px;
        padding: 0 20px;
        order: 1;        
    }

    .faca-mais .container{
        flex-direction: column;
    }
    .faca-mais .faca-mais-text h3{
        font-size: 48px;
    }

    .faca-mais .faca-mais-text,
    .faca-mais .faca-mais-img{
        width: 100%;
    }

    /*banner resposivo */
    .banner .banner-text{
        padding: 0;
        margin: 80px;
    }

    .banner .banner-text h1{
        font-size: 80px;
    }

    .banner .banner-text h2{
        color: white;
    }

    .banner .banner-text p{
        font-size: 15px;
    }

    .produtos .cards-item{
        width: 100%;
    }


    /*pagina sobre responsivo*/

    .sobre .container{
        flex-direction: column-reverse;
    }

    .sobre .sobre-img,
    .sobre .sobre-text{
        width: 100%;
    }

    .sobre .sobre-text{
        margin-top: 40px;
    }

    /*Pagina contato responsivo */
    .contato .contato-info{
        flex-direction: column-reverse;
    }

    .contato-info .right-side,
    .contato-info .left-side{
        width: 100%;
    }

    .contato-info .right-side{
        margin-bottom: 30px;
    }

    @media (max-width:500px) {
        .banner .banner-text h1{
            font-size: 50px;
        }
        .faca-mais .faca-mais-text h3{
            font-size: 40px;
        }
    }
}


/*SLIDER */


  .slider-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
  }
  
  .slider {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease-in-out;
  }
  
  .card {
    flex: 0 0 350px; /* Cada card ocupa exatamente a largura da imagem */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .product-image {
    width: 100%;
    max-width: 350px; /* Largura fixa da imagem */
    height: 500px; /* Altura fixa */
    object-fit: cover; /* Preenche a área sem distorção */
    display: block; /* Centraliza a imagem no card */
    margin: 0 auto;
  }
  
  .product-info {
    padding: 10px;
  }
  
  .product-name {
    margin: 10px 0 5px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .product-type, .product-description {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
  }
  
  .prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #11a80c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    z-index: 1;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  
  .prev-btn:hover, .next-btn:hover {
    background-color: #11a80c;
  }
  

  .more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #11a80c;
    margin-top: 10px; /* Espaçamento entre o botão e os elementos acima */
    padding: 8px 12px; /* Espaçamento interno entre o texto e as bordas do botão */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    line-height: 1; 
    transition: background-color 0.3s ease;
  }
  
  .more-btn:hover {
    background-color: #11a80c;
  }


  /* Estilos para a seção MVV */
.mvv-section {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center; /* Centraliza o texto */
}

.mvv-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Alinha os itens no centro */
    gap: 30px; /* Espaço entre os itens */
    max-width: 800px; /* Limita a largura para melhor legibilidade */
    margin: 0 auto; /* Centraliza o container na tela */
}

.mvv-item {
    background-color: #11a80c81; /* Fundo branco para destacar */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve */
    border-radius: 8px; /* Bordas arredondadas */
    padding: 20px;
    width: 100%; /* Ocupa toda a largura disponível */
}

.mvv-item h1 {
    font-size: 1.8em; /* Tamanho maior para os títulos */
    color: #333; /* Cor destacada para os títulos */
    margin-bottom: 10px; /* Espaço abaixo do título */
}

.mvv-item p {
    font-size: 1.1em; /* Tamanho do texto maior para leitura */
    line-height: 1.6; /* Melhora o espaçamento entre linhas */
    color: #555; /* Tom mais suave para o texto */
}


/* CSS do icon whatsapp */

.buttonzap{
    position: fixed;
    bottom: 60px;
    right: 50px;
    font-size: 30px;
    color: #ffffff;
    border-radius: 50%;
    padding: 3px;
    width: 50px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    z-index: 100;

}

.buttonzap .fab{
    padding-top: 9px;
}

.buttonzap:hover{
    background-color: #fff;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 2px 2px 200px #9e9e9e;
}


/* DROPDOWN DO LINK PRODUTOS */ 

/* Estilização do dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    color: #fff;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #555;
}

/* Mostra o dropdown ao passar o mouse */
.dropdown:hover .dropdown-content {
    display: block;
}

/* CONFIGURAÇÃO DO VIDEO PAGINA HOME */

.video-container {
    width: 100vw; /* Largura total da tela */
    height: 80vh; /* Altura de 80% da tela */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
   
}
