/* 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;
    margin-bottom: 30px;
}

.navbar-brand img {
    height: 75px;
    width: auto;
    display: block;
    padding: 5px 15px;
    background: none;
    box-shadow: none;
}

.navbar .nav-link {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #008844 !important;
}

.btn-success {
    background-color: #008844;
    border: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-success:hover {
    background-color: #00aa55;
}

/* Estilo do conteúdo principal */
.main-content {
    padding: 32px 16px;
    max-width: 900px;
    margin: 0 auto;
}

/* Títulos das seções */



/* Estilo unificado para todos os parágrafos dentro das seções */
.company-info-section p,
.about-me-section p {
    font-size: 1.25rem !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
    text-align: justify !important;
    color: #333 !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Espaçamento entre as seções */
.company-info-section,
.about-me-section {
    margin-bottom: 48px;
    padding: 0 15px;
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #25d366;
    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 */
.footer {
    background-color: #003519; /* Cor do rodapé, igual à navbar */
    padding: 5px 0; /* Mais padding para um visual mais limpo */
    text-align: center;
    font-size: 12px;
    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;
    }
}
 
@media (max-width: 768px) {
    .main-content p,
    .main-paragraph {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 1.5rem;
    }
}