/* Reset e estrutura básica */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: white;
    color: black;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navbar e footer fixos */
.navbar, .footer {
    flex-shrink: 0;
}

/* Conteúdo principal para ocupar o espaço restante */
body > *:not(.navbar):not(.footer) {
    flex: 1;
}

/* Navbar */
.navbar {
    background-color: #003519; /* Verde escuro */
    margin-top: 0px;

}

.navbar a {
    color: white;
    text-decoration: none;
}

.navbar .nav-link,
.navbar .nav-link.active {
    color: white !important; /* Força a cor branca para links da navbar */
    transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active:hover {
    color: #008844 !important; /* Verde mais claro no hover */
}

.navbar-brand img {
    height: 75px; /* Ajuste a altura da logo */
    width: auto;
    display: block;
    padding: 5px 15px;
    background: none;
    box-shadow: none;
}


/* Botão de orçamento */
.btn-success {
    background-color: #008844; /* Verde padrão para sucesso */
    border: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-success:hover {
    background-color: #00aa55; /* Um tom um pouco mais claro no hover */
}

section.container {
    margin-top: 0px;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-text {
    text-align: center;
    color: #333;
}

/* Ajustes para o conteúdo principal (onde fica o texto sobre a empresa) */

.conteudo-principal p {
    line-height: 1.7; /* Aumenta um pouco mais o espaçamento entre as linhas para melhor legibilidade */
    margin-bottom: 20px;
    text-align: left; /* Alinha o texto à esquerda para evitar buracos no justificado */
    font-size: 18px; /* Tamanho da fonte mais agradável para leitura */
;
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* Cor oficial do WhatsApp */
    color: #25d366; /* Cor do ícone */
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 32px;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #003519; /* Cor do rodapé, igual à navbar */
    padding: 5px 0; /* Mais padding para um visual mais limpo */
    text-align: center;
    font-size: small;
    color: white;
    margin-top: auto; /* Garante que o rodapé fique no final da página */

}

.footer img {
    height: 60px;
    margin-bottom: 10px; /* Mais espaço entre logo e texto */
    display: block;
    margin-left: auto;
    margin-right: auto;

}

.footer .redes a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px; /* Tamanho dos ícones de redes sociais */
    transition: color 0.3s;
}

.footer .redes a:hover {
    color: #008844; /* Cor de hover para ícones */
}

/* Media Queries para responsividade (ajustes menores para telas diferentes) */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px; /* Logo menor em telas menores */
    }
    .conteudo-principal p {
        font-size: 16px; /* Fonte menor em telas pequenas */
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-float i {
        font-size: 28px;
    }
}