body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F1E7D2;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #B07544;
}

header .logo {
    height: 150px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

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

.carousel {
    position: relative;
    width: 100%;
    max-width: 1900px;
    height: 300px; /* Altura ajustada conforme solicitado */
    overflow: hidden;
    margin: 0 auto;
}

.carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-inner img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover; /* Preenche toda a área, pode cortar partes da imagem */
    display: block;
}


button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

section {
    padding: 40px 20px;
}

h2 {
    color: #B07544;
}

#contato {
    text-align: center; /* Centraliza o título e os elementos inline */
}

.contato-info, form {
    margin: 0 auto;     /* Centraliza horizontalmente */
    text-align: center;   /* Mantém o texto alinhado à esquerda */
    max-width: 400px;   /* Limita a largura para um visual mais limpo */
}

form {
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 8px;
    font-size: 14px;
}

form button {
    background-color: #B07544;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 100;
}

.whatsapp-float img {
    width: 70px;
    height: 70px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #B07544;
    color: white;
}

footer a {
    margin: 0 10px;
    color: inherit; /* Mantém a cor padrão, pode mudar se quiser */
    text-decoration: none;
}

footer a:hover {
    color: #555; /* Cor ao passar o mouse */
}

#quem-somos {
    font-family: 'Lora', serif; /* ou substitua por Raleway, Poppins... */
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

#contato {
    font-family: 'Lora', serif; /* ou substitua por Raleway, Poppins... */
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

h1 {
    font-family: 'Lora', serif; /* ou substitua por Raleway, Poppins... */
    font-size: 2.1rem;
    color: #333;
    line-height: 1.6;
}
