/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    width: 100%;
    position: absolute; /* Overlaying the hero section */
    top: 0;
    z-index: 1000;
    background: transparent; /* Transparent background for overlay effect */
}

/* Indicador de dropdown minimalista com seta contornada centralizada */
.nav-menu .dropdown > a {
    position: relative;
}

.nav-menu .dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    transform: rotate(45deg);
    margin-left: 7px;
    position: absolute;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.3s;
}

.nav-menu .dropdown:hover > a::after {
    transform: translateY(-50%) rotate(-135deg);
}

/* Dropdown Menu Styling */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0c1e3e;
    padding: 15px 0;
    border-radius: 4px;
    list-style: none;
    min-width: 200px;
    z-index: 10;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-menu li {
    padding: 12px 20px;
}

.nav-menu .dropdown-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

.nav-menu .dropdown-menu li a:hover {
    color: #4983C3;
}

/* Navbar Links */
.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    font-size: 1em;
    transition: color 0.3s;
}

.navbar nav ul li a.active {
    color: #254173; /* Cor do link ativo */
}

.navbar nav ul li a:hover {
    color: #254173;
}

.consultation-button {
    background-color: #254173;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.consultation-button:hover {
    background-color: #102A43;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 130vh;
    background: url('../assets/about/about.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 51, 0.5);
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-content a.consultation-button {
    padding: 12px 24px;
    font-size: 1.2em;
    border-radius: 25px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 30px;
        padding: 20px;
        border-radius: 10px;
    }

    .nav-menu.active {
        display: flex;
        animation: slideIn 0.3s forwards;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        margin-left: 10px;
    }

    .navbar {
        padding: 10px 20px;
    }

    .consultation-button {
        font-size: 0.9em;
    }

    /* Mobile Dropdown Styling */
    .nav-menu .dropdown-menu {
        position: static;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
        border-radius: 10px;
    }
}

@keyframes slideIn {
    from {
        right: -100%;
    }
    to {
        right: 30px;
    }
}


/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 130vh;
    background: url('../assets/about/about.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    margin-top: -100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 51, 0.5); /* Navy blue overlay */
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-content a.consultation-button {
    padding: 12px 24px;
    font-size: 1.2em;
    border-radius: 25px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 30px;
        padding: 20px;
        border-radius: 10px;
    }

    .nav-menu.active {
        display: flex; /* Show menu when active */
    }

    .hamburger {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2.5em;
    }

    .hero-content a.consultation-button {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2em;
    }

    .hero-content a.consultation-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}










/* Bloco 2 Section */
.bloco2 {
    padding: 60px 30px;
    background-color: #f7f7f7; /* Light background color */
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.titles {
    flex: 1;
    text-align: left;
}

.mini-title {
    font-size: 1.2em;
    color: #254173;
    margin-bottom: 10px;
    font-weight: normal;
}

.titles h2 {
    font-size: 2.5em;
    color: #333;
    font-weight: bold;
}

.description {
    flex: 2;
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
}

.description p {
    margin-bottom: 20px;
}

.description p strong {
    color: #254173; /* Highlight color for key principles */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .titles h2 {
        font-size: 2em;
    }

    .description p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .bloco2 {
        padding: 30px 15px;
    }

    .titles h2 {
        font-size: 1.8em;
    }

    .mini-title, .description p {
        font-size: 1em;
    }
}







/* Bloco 3 Section */
.bloco3 {
    background-color: #254173; /* Background color similar to the screenshot */
    padding: 60px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
}

.bloco3 .content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.bloco3 p {
    font-size: 2em; /* Relatively large font size */
    font-weight: 1.4;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .bloco3 p {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .bloco3 {
        padding: 40px 15px;
    }
    .bloco3 p {
        font-size: 1.2em;
    }
}












/* Bloco 3: Seção de Serviços */
.services-section {
    text-align: left;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section h3 {
    color: #254173;
    font-weight: normal;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.section-description {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border: 2px solid #333;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card img {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.service-card h4 {
    font-size: 1.2em;
    color: #333;
    margin-top: 60px;
    font-weight: 600;
}

.explore-link {
    color: #333;
    font-size: 0.9em;
    font-weight: 300;
    margin-top: 10px;
}

/* Efeito de Hover para o Card */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-top: 4px solid #254173;
    border-right: 4px solid #254173;
    border-bottom: 4px solid #254173;
    border-radius: 8px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    pointer-events: none;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .section-description {
        font-size: 1.2em;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}






/* Bloco 4 Section */
.bloco4 {
    background-color: #ffffff;
    padding: 60px 30px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.text-content {
    flex: 1.5; /* Increase width of the text section */
    color: #333;
}

.text-content h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}
.mission-points {
    list-style: none;
    padding: 0;
}

.mission-points li {
    display: flex;
    align-items: flex-start;
    font-size: 1em;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
}

.mission-points li i {
    color: #254173; /* Green color for check icon */
    margin-right: 10px;
    font-size: 1.2em;
    flex-shrink: 0; /* Prevents the icon from shrinking */
    margin-top: 4px; /* Adjust to align with title */
}

.mission-points li strong {
    display: inline-block;
    white-space: nowrap; /* Prevents the title from breaking onto a new line */
    margin-right: 8px; /* Space between title and description */
    font-weight: bold;
    color: #333;
}

.mission-points li span {
    flex: 1; /* Ensures description takes the remaining space */
    font-weight: normal;
    color: #555;
}


.image-container {
    flex: 0.8; /* Decrease width of the image section */
    text-align: right;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
    .text-content h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .bloco4 {
        padding: 40px 15px;
    }
    .text-content p {
        font-size: 1em;
    }
    .mission-points li {
        font-size: 0.95em;
    }
}










/* Estilo do Rodapé */
.footer {
    background-color: #0c1e3e;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

.footer-description {
    color: #AAB7C4;
    font-size: 1.1em;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 220px;
}

.footer-links {
    display: flex;
    flex: 3;
    justify-content: space-between;
    gap: 20px;
}

.footer-column h4 {
    font-size: 1.1em;
    color: white;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #AAB7C4;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #1F2E3E;
    padding-top: 20px;
}


.social-icons a {
    margin-right: 15px;
    font-size: 1.5em; /* Ajusta o tamanho dos ícones */
    transition: color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #254173; /* Cor de destaque ao passar o mouse */
}

.privacy-policy {
    color: #254173;
    margin-right: auto;
    text-decoration: none;
    font-size: 0.9em;
}

.privacy-policy:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
