body {
	font-family: 'Montserrat', sans-serif; /* Assegurando site */
}

/* Header Styles */
#header {
    position: relative;
    height: 80vh; /* 80% da altura da viewport */
    min-height: 400px; /* Altura mínima para telas menores */
    overflow: hidden;
}

nav {
	height: 100px;
}

#sobre .lead {
	font-size: 16px;
	font-weight: 350;
}

.navbar-collapse {
	background: #fafafa;
	padding: 0px 20px 10px;
	border-radius: 0px 0px 10px 10px ;
	text-align: end;
}

.logo-navbar {
	height: 120px;
}

#headerCarousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.navbar {
	font-weight:600;
}

.nav-link {
	margin-left: 10px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 50%;
    left: 15%;
    transform: translateY(70%);
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-primary {
    background-color: #003969;
    border-color: #003969;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #002a4e;
    border-color: #002a4e;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Carousel Control Styles */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 15;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Overlay to darken the video */
.carousel-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #header {
        height: 60vh; /* Ligeiramente maior em telas menores para melhor legibilidade */
    }
	
	nav {
		height: 100px;
	}

	.logo-navbar {
	height: 80px;
}
	
    .carousel-caption h2 {
        font-size: 1.6rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* About Section Styles */
#sobre {
    background-color: #fafafa;
}

.section-title {
    color: #003969;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background-color: #003969;
    bottom: 0;
    left: 0;
}

#sobre p {
    color: #6F6F6F;
    margin-bottom: 20px;
}

#sobre .btn-primary {
    background-color: #003969;
    border-color: #003969;
    transition: all 0.3s ease;
}

#sobre .btn-primary:hover {
    background-color: #002a4e;
    border-color: #002a4e;
}

#sobre img {
    transition: all 0.3s ease;
}

#sobre img:hover {
    transform: scale(1.05);
}



/* Estilos da Seção Áreas de Atuação */
#areas-atuacao {
    background-color: #003969;
    color: #ffffff;
    padding: 80px 0;
}

#areas-atuacao h2 {
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

/* Estilos dos Cards */
.card {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.card-body {
    padding: 20px;
}

.card-title {
    color: #003969;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.2rem;
}

/* Estilos atualizados para os modais */
.modal-content {
    background-color: #f8f9fa;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.modal-header {
    background-color: #003969;
    color: #ffffff;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px 30px;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-close {
    color: #ffffff;
    opacity: 1;
}

.modal-body {
    padding: 30px;
    color: #333333;
}

.modal-body img {
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	width: 100% !important;
	height: 40vh !important;
}

.modal-body h4 {
    color: #003969;
    margin-top: 20px;
    font-weight: 600;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body ul {
    padding-left: 20px;
    margin-top: 15px;
}

.modal-body li {
    margin-bottom: 10px;
}

.modal-footer {
    border-top: none;
    padding: 20px 30px;
    background-color: #f8f9fa;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.btn-secondary {
    background-color: #003969;
    border-color: #003969;
    color: #ffffff;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #002a4e;
    border-color: #002a4e;
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }

    .modal-body {
        padding: 20px;
    }
}

/* Estilos atualizados para a seção Missão e Valores */
#missao-valores {
    background-color: #f8f9fa;
    padding: 80px 0;
}

#missao-valores h2 {
    color: #003969;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

#missao-valores h2 i {
    font-size: 2rem;
    margin-right: 15px;
    color: #003969;
}

.mission-card, .values-card {
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover, .values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.blue-bg {
    background-color: #003969;
    color: #ffffff;
}

.white-bg {
    background-color: #ffffff;
    color: #333;
}

.mission-icon, .values-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blue-bg .mission-icon {
    color: #ffffff;
}

.white-bg .values-icon {
    color: #003969;
}

.mission-card h3, .values-card h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.blue-bg h3 {
    color: #ffffff;
}

.white-bg h3 {
    color: #003969;
}

.values-card ul {
    list-style-type: none;
    padding-left: 0;
}

.values-card li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.values-card li i {
    color: #003969;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 4px;
}

.values-card li strong {
    color: #003969;
    margin-right: 5px;
}

.mission-card img {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .mission-card, .values-card {
        margin-bottom: 30px;
    }
}

/* Animação sutil para os ícones */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.mission-icon, .values-icon {
    animation: pulse 2s infinite;
}


/* Estilos atualizados para a seção Equipe */
#equipe {
    background-color: #003969;
    color: #ffffff;
    padding: 80px 0;
}

#equipe h2 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

/*
h2::after {
    content: '';
    display: block;
    width: 200px;
    height: 3px;
    background-color: #ffffff;
    margin: 10px auto 0;
}
*/

.team-member {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
/*    border: 5px solid #ffffff;*/
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 5px;
}

.team-member .role {
    color: #cccccc; /* Alterado para cinza claro */
    font-style: italic;
    margin-bottom: 15px;
}

.team-member .description {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.team-member .btn {
    background-color: #ffffff;
    color: #003969;
    transition: all 0.3s ease;
}

.team-member .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
}

/* Estilos para os modais */
.modal-content {
    background-color: #f8f9fa;
    border: none;
    border-radius: 15px;
}

.modal-header {
    background-color: #003969;
    color: #ffffff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-title {
    font-weight: 700;
}

.modal-body {
    color: #333333;
    padding: 30px;
}

.modal-body img {
    width: 150px;
    height: 150px;
    object-fit: cover;
/*    border: 5px solid #003969;*/
    margin-bottom: 20px;
}

.modal-body h6 {
    color: #003969;
    margin-top: 20px;
    font-weight: 600;
}

.modal-footer {
    border-top: none;
}

.modal-footer .btn-secondary {
    background-color: #003969;
    border: none;
}

.modal-footer .btn-secondary:hover {
    background-color: #002a4e;
}

@media (max-width: 768px) {
    .team-member {
        margin-bottom: 30px;
    }
}


/* Estilos para a seção Localização */
#localizacao {
    background-color: #f8f9fa;
    color: #333;
    padding: 80px 0;
}

#localizacao h2 {
    color: #003969;
    font-weight: 700;
    margin-bottom: 50px;
	
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	height: 100%;
}

.contact-info h3 {
    color: #003969;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info i {
    color: #003969;
    margin-right: 10px;
    max-width: 20px;
    text-align: center;
	text-decoration: none;
}

.contact-info a {
    color: #333;    
	text-decoration: none;
}

.social-links {
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #003969;
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
	
}

.social-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	color: #ffffff; /* Isso já estava definido, mas estou reiterando para clareza */
}

.social-icon:hover {
    background-color: #002a4e;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-info {
        margin-top: 30px;
    }
}

/* Estilos para o CTA Final */
#cta-final {
    background-color: #f8f9fa;
    padding: 80px 0;
}

#cta-final h2 {
    color: #003969;
    font-weight: 700;
    margin-bottom: 20px;
}

#cta-final .lead {
    color: #333;
    max-width: 800px;
    margin: 0 auto 30px;
}

#cta-final .btn-primary {
    background-color: #003969;
    border-color: #003969;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#cta-final .btn-primary:hover {
    background-color: #002a4e;
    border-color: #002a4e;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Estilos harmonizados para o Footer */
#footer {
    background-color: #003969;
    color: #ffffff;
    padding: 60px 0 30px;
}

#footer h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#footer p, #footer ul li {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;
}

#footer ul {
    padding-left: 0;
    list-style-type: none;
}

#footer ul li {
    margin-bottom: 10px;
}

#footer a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

#footer a:hover {
    opacity: 0.8;
}

#footer .contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

#footer .contact-info i {
    margin-right: 10px;
    font-size: 1rem;
}

#footer .social-links {
    margin-top: 20px;
}

#footer .social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

#footer .social-icon:hover {
    background-color: #ffffff;
    color: #003969;
}

#footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

#footer .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
}

#footer .footer-links a {
    margin-left: 15px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    #footer .text-md-end {
        text-align: center !important;
        margin-top: 20px;
    }
    
    #footer h5 {
        margin-top: 30px;
    }
}

/* Estilos atualizados para a seção de Valores */
.values-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.values-card h3 {
    color: #003969;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.value-list {
    display: flex;
    flex-direction: column;
}

.value-item {
    margin-bottom: 20px;
    text-align: left;
}

.value-item h5 {
    color: #003969;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-item h5 i {
    font-size: 65%;  /* 50% menor que o tamanho do texto h5 */
    margin-right: 10px;
}

.value-item p {
    color: #333333;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .value-item h5 {
        font-size: 1.1rem;
    }
}