*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial;
background:#f8f6d9bd;
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:5px 20px;
background:#fffeec;
flex-wrap:wrap;
}

.logo{
height:60px;
border-radius: 50px;
}

.menu{
display:flex;
gap:20px;
}

.menu a{
text-decoration:none;
color:#666;
font-size:15px;
transition: .2s;
}
.menu a:hover{
    color: #1b3b2d;
    transform: scale(1.1);
}

/* SOBRE */

.sobre-section{
display:flex;
justify-content:space-between;
align-items:center;
padding:50px;
background:linear-gradient(to right,#e2f8e2,#fde5bc);
flex-wrap:wrap;
}

.sobre-texto{
max-width:500px;
}

.sobre{
background:#faecd1;
padding:10px;
border-radius:20px;
margin-bottom:10px;
text-align:center;
}

.sobre-lado{
display:flex;
justify-content:center;
align-items:center;
}

.soldado-fixo{
width:250px;
background:white;
padding:10px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.2);
}

.soldado-fixo img{
width:100%;
}

/* CHAT */

.chat-section{
padding:50px;
text-align:center;
}

.chat-area{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
margin-top:20px;
}

.chatbot-container{
width:350px;
height:330px;
background:white;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.3);
display:flex;
flex-direction:column;
overflow:hidden;
}

.chat-header{
background:#6ba36b;
padding:10px;
}

.chat-messages{
flex:1;
padding:10px;
overflow:auto;
}

.chat-input{
display:flex;
}

.chat-input input{
flex:1;
padding:10px;
border:none;
}

.chat-input button{
padding:10px;
background:#83c05a;
border:none;
color:white;
}

.robo{
text-align:center;
}

.robo img{
width:150px;
}

.balao{
background:white;
padding:8px;
border-radius:10px;
margin-top:10px;
}

/* CATALOGO */

.catalogo{
padding:50px;
text-align:center;
}

.cards-geral{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:30px;
}

.container{
width:200px;
background:#faf2c7;
padding:10px 5px;
border-radius:10px;
text-decoration: none;
color: inherit;
transition: .3s;
}
.container:hover{
    transform:translateY(-10px);
    background-color: #f3fdc5;
    color: #dfe787;
}
.icons{
width:100%;
}

.txt{
margin-top:10px;
}

/* RODAPE */

.rodape{
background:#1b3b2d;
color:white;
text-align:center;
padding:20px;
}

/* RESPONSIVO */

@media(max-width:768px){

.sobre-section{
flex-direction:column;
text-align:center;
gap: 25px;
}

.chat-area{
flex-direction:column;

}
.chatbot-container{
width:250px;
height:230px;
}

.menu{
justify-content:center;
flex-wrap:wrap;
}

}