body{
    background-color: rgb(34, 34, 34);
    color: white;
    font-family: poppinsregular;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    width: 70%; 
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

#title {
    display: flex;
    align-items: center;
    width: 30%;
}

li{
    display: inline-block;
    margin: 20px;
}

a{
    color: white;
}

a:hover{
    color: #4666a7;
    transition: 0.3s all;
}

#cotacao-btn{
    border: 2px solid #4666a7;
    padding: 10px;
    border-radius: 15px;
}

#cotacao-btn:hover{
    background-color: #4666a7;
    color: white;
}

h1{
    font-weight: 200;
}

main{
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

h2{
    font-size: 56px;
    line-height: 10px;
    font-family: poppinsmedium;
}

article{
    margin-left: 80px;
}

img{
    width: 90%;
    height: auto;
    border-radius: 7px;
    box-shadow: 1px 1px 1rem #4666a7;
}

span{
    color: #f0db48;
}

p{
    line-height: 20px;
    max-width: 500px;
}

button{
    padding: 10px;
    width: 100%;
    background-color: #4d6fb6;
    color: white;
    font-family: poppinsmedium;
    border: none;
    border-radius: 9px;
    font-size: 25px;
}

button:hover{
    cursor: pointer;
    background-color: #6284cc;
}

.services {
    text-align: center;
    margin-top: 200px;
}

.services h2,
.services p {
    margin-left: auto;
    margin-right: auto;
}

.n2, .n3{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 2px solid #f0db48;
    padding: 10px;
    border-radius: 10px;
}

/* Carrossel de Imagens */
.image-carousel {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    max-height: 150%;
    max-width: 80%; /* Definindo uma largura menor para o carrossel */
    margin-left: auto;  /* Centraliza o carrossel horizontalmente */
    margin-right: auto; /* Centraliza o carrossel horizontalmente */
}

.carousel-container {
    display: flex;
    transition: transform 1s ease-in-out; /* Transição suave */
}

.carousel-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* Tamanho reduzido para o carrossel */
.image-carousel {
    height: 800px; /* Ajuste de altura */
    border-radius: 10px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .image-carousel {
        height: 250px; /* Ajuste para telas menores */
        max-width: 100%; /* Garantindo que o carrossel use toda a largura em telas pequenas */
    }
}

/* rola a tela para aba clicada */
html {
    scroll-behavior: smooth;
}

/* Aba Sobre*/
.sobre {
    text-align: center;
    padding: 60px 15px;
    margin-top: 100px; /* ou ajuste conforme seu layout */
}

.t1 {
    font-size: 45px;
    line-height: 1.4; /* aumenta o espaçamento entre linhas */
    font-family: poppinsmedium; /* ou outra que esteja usando */
    max-width: 900px;
    margin: 0 auto;
    word-break: break-word;
}

.t2{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 2px solid #f0db48;
    padding: 10px;
    border-radius: 10px;
}

.prova-social {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* duas colunas */
    gap: 10px; /* espaço entre as imagens */
    max-width: 1200px; /* opcional: limite de largura */
    margin: 0 auto; /* centralizar */
}

.prova-social img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* opcional: cantos arredondados */
}

/* Aba Contato*/
.contato {
    text-align: center;
    padding: 60px 15px;
    margin-top: 100px; /* ou ajuste conforme seu layout */
}

.b1 {
    font-size: 45px;
    line-height: 1.4; /* aumenta o espaçamento entre linhas */
    font-family: poppinsmedium; /* ou outra que esteja usando */
    max-width: 900px;
    margin: 0 auto;
    word-break: break-word;
}

.b2{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 2px solid #f0db48;
    padding: 10px;
    border-radius: 10px;
}
/* Rodapé */
footer {
    background-color: rgb(34, 34, 34);
    color: white;
    padding: 40px 20px;
    margin-top: 100px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    width: 180px;
    box-shadow: none;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #f0db48;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #f0db48;
}

.footer-column p {
    margin: 5px 0;
    line-height: 1.5;
}




