* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #012e42;
    color: #333;
    text-align: center;
    padding-top: 70px;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #012e42;
    padding: 15px 0;
    z-index: 1000;
    border-bottom: solid 3px #07ca75;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    height: 50px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

nav {
    display: flex;
    flex-wrap: wrap;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #07ca75;
}

nav.active {
    right: 0;
}

.boas-vindas {
    position: relative;
    min-height: 400px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    padding-left: 180px;
}

.boas-vindas::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #07ca75 30%, transparent);
    z-index: 1;
}

.boas-vindas::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/smiling-asian-girl-sits-stairs-near-building-entrance-using-mobile-phone-app-happy-young-woman.jpg) no-repeat center center/cover;
    z-index: 0;
}

.boas-vindas .container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}

.app {
    background:
        linear-gradient(to right, #2a2a2a 30%, transparent),
        url(images/fundo\ site.jpg) no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    border-bottom: solid 3px #07ca75;
    position: relative;
    overflow: hidden;
}

.logo-finwise {
    height: 100px;
    margin-bottom: 70px;
}

.app p {
    font-size: 22px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #07ca75;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    margin-top: 50px;
}

.btn:hover {
    background: #218838;
}

.btn.em-breve {
    background: #555;
    cursor: default;
}

.sobre-nos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #012e42;
    min-height: 650px;
    padding: 100px 20px;
    margin-bottom: 100px;
}

.sobre-nos h2 {
    color: #fff;
    margin-bottom: 80px;
    font-size: 35px;
}

.sobre-nos .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.missao, .visao, .valores {
    width: 320px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: solid 3px #07ca75;
    border-radius: 10px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out;
    color: #fff;
}

.sobre-nos .content .missao:hover,
.sobre-nos .content .visao:hover,
.sobre-nos .content .valores:hover {
    transform: scale(1.05);
}

.sobre-nos .content h3 {
    font-size: 28px;
    margin-top: 0;
    padding-top: 10px;
    margin-bottom: 20px;
}

footer {
    background: #2a2a2a;
    color: #fff;
    padding: 30px 20px;
    font-size: 14px;
    text-align: center;
    border-top: solid 3px #07ca75;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo {
    height: 80px;
}

/* NOVO BLOCO DE ESTILO */
.footer-center-content {
    display: flex;
    flex-direction: column; /* Coloca os itens (ícones e email) em coluna */
    align-items: center;
    justify-content: center;
    gap: 15px; /* Espaçamento entre os links sociais e o contato */
}
/* FIM NOVO BLOCO DE ESTILO */

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-links img {
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

.social-links a:hover img {
    transform: scale(1.1);
}

/* Estilos para o novo bloco de contato */
.contact-info {
    font-size: 16px; 
    display: flex;
    align-items: center;
    gap: 5px; 
}

.contact-info span {
    color: #fff; 
}

.email-contato {
    color: #07ca75; /* A cor verde desejada */
    text-decoration: none;
    font-weight: bold; 
    transition: color 0.3s;
}

.email-contato:hover {
    color: #07ca75;
    text-decoration: underline;
}

.features {
    background-color: #012e42;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    border-top: solid 3px #07ca75;
    border-bottom: solid 3px #07ca75;
}

.features h2 {
    font-size: 35px;
    margin-bottom: 50px;
}

.feature-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: solid 2px #07ca75;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #d3d3d3 transparent; /* Firefox */
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #d3d3d3;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #bfbfbf;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 60px;
        right: -160px;
        width: 160px;
        height: auto;
        background-color: #012e42;
        padding: 15px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        border-radius: 8px 0 0 8px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    nav ul li {
        margin: 8px 0;
    }

    nav ul li a {
        font-size: 15px;
    }

    .boas-vindas {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
        text-align: center;
        min-height: 320px;
    }

    .boas-vindas .container {
        padding-left: 0;
        max-width: 90%;
    }

    .app {
        padding: 60px 15px;
    }

    .app p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .btn {
        font-size: 15px;
        padding: 10px 22px;
        margin-top: 30px;
    }

    .logo {
        height: 35px;
    }

    .logo-finwise {
        height: 70px;
        margin-bottom: 30px;
    }

    .features {
        padding: 60px 15px;
    }

    .features h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .feature-item {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }

    .feature-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .sobre-nos {
        padding: 60px 15px;
        min-height: 500px;
        margin-bottom: 60px;
    }

    .sobre-nos h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .sobre-nos .content h3 {
        font-size: 20px;
    }

    .missao, .visao, .valores {
        width: 100%;
        padding: 15px;
        height: auto;
    }

    .footer-logo {
        height: 50px;
    }

    .social-links img {
        width: 26px;
        height: 26px;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
    }
    
    /* REMOVIDO: A nova estrutura HTML torna esta regra desnecessária para a ordem mobile */
    /* .contact-info {
        order: 3;
    } */
}