


body {
    display: flex;
    padding-top: 95px; 
    flex-direction: column;
    min-height: 100vh;
    font-size: 20px;  
    line-height: 1.7;
    color: var(--text-color);
}

.lead {
    font-size: 1.25rem; 
    font-weight: 300;
}

h1, h2, h3 {
    font-weight: 600; 
    color: var(--primary-theme-color);
}


/* header e menu */

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
}

#logo {
    width: 60px;
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link {
    font-size: 1.15rem; 
    font-weight: 500;
    padding: 0.5rem 1rem; 
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
}


/* Botoes e links */
a {
    color: var(--primary-theme-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-theme-hover);
    text-decoration: underline;
}

.btn-primary {
    background-color: var(--primary-theme-color);
    border-color: var(--primary-theme-color);
    font-size: 1.1rem;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-theme-hover);
    border-color: var(--primary-theme-hover);
    transform: scale(1.02);
}


/* Conteudo principal do mais */

.main-image {
    max-width: 100%;
    height: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#mainSlider .carousel-item {
    height: 80vh;
    min-height: 400px;
}

#mainSlider .carousel-item img {
    height: 100%;
    object-fit: cover;
}

/* botao contatos */

.btn-primary {
    background-color: #005f73; 

    color: #fff; 
    font-size: 1.1rem;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0a9396;
}

/* Footer */
footer {
    width: 100%;
}