/* 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;
    background-color: #1a2b50; 

    width: 100%;
    top: 0;
}


.nav-menu .dropdown > a {
    position: relative; 
}

.nav-menu .dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid white; /* Cor do contorno da seta */
    border-bottom: 1px solid white;
    transform: rotate(45deg); /* Angulação para parecer uma seta para baixo */
    margin-left: 7px;
    position: absolute;
    top: 50%; /* Centraliza verticalmente */
    transform: translateY(-60%) rotate(45deg); /* Ajuste fino para centralização */
    transition: transform 0.3s;
}

.nav-menu .dropdown:hover > a::after {
    transform: translateY(-50%) rotate(-135deg); /* Gira a seta ao passar o mouse */
}
/* Dropdown Menu Styling */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 5%; /* Posiciona o dropdown em relação ao centro do item do menu */
    transform: translateX(-10%); /* Centraliza o dropdown em relação ao título do menu */
    background-color: #0c1e3e; /* Fundo escuro */
    padding: 15px 0; /* Aumenta o espaçamento vertical geral do dropdown */
    border-radius: 4px; /* Bordas menos arredondadas */
    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: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;
    color:white;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Initially hidden */
        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; /* Displays when the 'active' class is added */
        animation: slideIn 0.3s forwards;
    }

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

    .navbar {
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .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;
    }
}

/* Contact Section */
.contact-section {
    display: flex;
    padding: 60px 30px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    gap: 30px;
    width: 100%;
}

.left-content h1 {
    font-size: 2.5em;
    color: #333;
}

.left-content p {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 1.2em;
}

.data-quadrants {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.quadrant {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    border: 1px solid #e0e0e0;
}

.quadrant h2 {
    font-size: 2em;
    color: #254173;
    margin-bottom: 10px;
}

.right-content h2 {
    font-size: 1.5em;
    color: #333;
}

.right-content form {
    margin-top: 20px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    width: 100%;
    margin-bottom: 15px;
}

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

.send-button:hover {
    background-color: #28B874;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    .data-quadrants {
        flex-direction: column;
    }
    .navbar nav ul {
        flex-direction: column;
    }
}







/* 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;
    }
}
