body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f2ef;
    color: #333;
}

.navbar {
    background-color: #0077b5;
}

.navbar-brand, .navbar-nav .nav-link {
    color: white !important;
}

.carousel-inner img {
    max-width: 100%; /* Limita o tamanho máximo para caber no container */
    height: 600px;
    display: block;
    margin: auto;    /* Centraliza a imagem no carousel */
    filter: brightness(0.9) sepia(0.5) hue-rotate(-20deg) saturate(1.2); /* Filtro harmonizado */
}

.carousel-inner {
    text-align: center; /* Centraliza o conteúdo do carousel */
}

.carousel-caption {
    color: #fff;
}

.carousel-caption h5 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0077b5;
}

.carousel-caption p {
    font-size: 1.0rem;
    color: #252424; /* Texto em cinza claro para contraste */
}


.feature-section {
    padding: 50px 15px;
}

.feature {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.feature h5 {
    color: #0077b5;
    font-weight: bold;
}

.contact-section {
    background-color: #fff;
    padding: 50px 15px;
}

.contact-section h2 {
    color: #0077b5;
}

.footer {
    background: linear-gradient(135deg, #005f8a, #0077b5); /* Gradiente harmonioso */
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-size: 1rem; /* Ajusta o tamanho do texto */
}

#contact-info {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}



#why-choose {
    padding: 60px 0;
    background-color: #f3f2ef; /* Fundo mais claro para harmonia */
}

#why-choose h2 {
    font-size: 2rem; /* Tamanho ajustado para melhor leitura */
    font-weight: bold;
    color: #0077b5; /* Azul LinkedIn */
    text-transform: none; /* Remove uppercase para maior acessibilidade */
}

#why-choose p {
    font-size: 1rem; /* Fonte menor para melhor leitura */
    line-height: 1.6; /* Maior espaçamento entre linhas */
    color: #444; /* Tom de cinza escuro para suavizar o contraste */
}

#why-choose img {
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 80%; /* Reduz o tamanho máximo da imagem para harmonia */
    margin: 0 auto; /* Centraliza a imagem */
}

.feature-section .card {
    border: none;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-align: center;
}

.feature-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-section .card-title {
    font-size: 1.2rem;
    color: #0077b5;
    font-weight: bold;
}

.feature-section .card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.feature-section .iconify {
    color: #0077b5;
}


#testimonials {
    background-color: #f9f9f9;
    padding: 60px 0;
}

#testimonials h2 {
    font-size: 2rem;
    color: #0077b5;
}

#testimonials .card {
    border: none;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

#testimonials .rounded-circle {
    border: 2px solid #0077b5;
}

#testimonials p {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

#testimonials .carousel-control-prev-icon,
#testimonials .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-size: 100%;
}

#testimonials .carousel-control-prev-icon:hover,
#testimonials .carousel-control-next-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

#contact-now {
    text-align: center;
    padding: 60px 20px;
}

#contact-now button:hover {
    background-color: #005f8a;
    color: white;
    transition: 0.3s ease;
}