/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    padding-top: 90px;
    background-color: #E7E7E7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    width: 100%;
    background-color: #E7E7E7;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 90px;
}

.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    height: 150px;
    width: auto;
    display: block;
}

.nav_links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav_links li a {
    text-decoration: none;
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav_links li a:hover {
    color: #FF8929;
}

/* ===== HERO ===== */
.heroSection {
    background-color: #E7E7E7;
    overflow: hidden;
}

.heroSection_inner {
    display: flex;
    align-items: stretch;
    padding-top: 50px;
}

.heroSection_textContainer {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 50px;
}

.heroSection_textContainer h1 {
    font-size: 55px;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333333;
}

.heroSection_textContainer span {
    font-weight: 300;
}

.heroSection_textContainer p {
    font-size: 20px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.heroSection_button {
    background-color: #FF8929;
    color: #FFFFFF;
    border: 6px solid #3C4D92;
    padding: 14px 36px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border-radius: 12px;
    width: fit-content;
}

.heroSection_button:hover {
    background-color: #e67a1f;
    transform: translateY(-2px);
}

.heroSection_imageContainer {
    width: 45%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.heroSection_imageContainer img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom right;
}

/* ===== HR HERO ===== */
.hr_hero {
    height: 80px;
    width: 100%;
    background-color: #3C4D92;
    border-top: 20px solid #FF8929;
    border-bottom: 20px solid #FF8929;
}

/* ===== CARDS ===== */
.moreInfo {
    width: 100%;
    padding: 80px 0;
    background-color: #E7E7E7;
}

.card-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.card-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-wrapper {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.icon-wrapper img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.card-item:not(:last-child) .icon-wrapper::after {
    content: "...........................";
    position: absolute;
    right: -40%;
    color: #3C4D92;
    letter-spacing: 5px;
    font-weight: bold;
    opacity: 0.5;
}

.card-item h2 {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.card-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    max-width: 280px;
}

/* ===== QUEM SOMOS ===== */
.whoWheAre {
    width: 100%;
    padding: 80px 0;
    background-color: #E7E7E7;
}

.whoWheAre_inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.whoWheAre_textContainer {
    width: 50%;
    position: relative;
    padding-top: 40px;
}

.whoWheAre_textContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #324C96;
    border-radius: 50%;
}

.whoWheAre_textContainer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 15px;
    height: 15px;
    background-color: #FF8929;
    border-radius: 50%;
}

.whoWheAre_textContainer h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #333333;
}

.whoWheAre_textContainer h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FF8929;
    font-weight: 400;
}

.whoWheAre_textContainer p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.whoWheAre_cardContainer {
    background-color: #324C96;
    color: #FFFFFF;
    padding: 40px;
    border-radius: 60px;
    box-shadow: 20px 20px 0px 0px #FF8929;
    flex-shrink: 0;
}

.whoWheAre_cardContainer h1 {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.whoWheAre_cardContainer h1 span {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-top: 5px;
    text-decoration: underline dotted;
    text-underline-offset: 8px;
    text-decoration-color: #FF8929;
}

.whoWheAre_cardContainer ul {
    list-style: none;
    margin-top: 20px;
}

.whoWheAre_cardContainer li {
    font-size: 16px;
    padding: 6px 0 6px 35px;
    background-image: url('./assets/check-lg.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 22px;
}

/* ===== ASSOCIE-SE ===== */
.associate {
    width: 100%;
    background-color: #E7E7E7;
    padding: 60px 0;
}

.associate_inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.associate_text {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.associate_text button {
    background-color: #FF8929;
    color: #FFFFFF;
    border: 6px solid #3C4D92;
    padding: 14px 36px;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.associate_text button:hover {
    background-color: #e67a1f;
    transform: translateY(-2px);
}

.associate_text button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #324C96;
    border-radius: 50%;
}

.associate_text button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #FF8929;
    border-radius: 50%;
}

.associate_text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    text-align: center;
    max-width: 520px;
}

.associate_image {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.associate_image img {
    width: 80%;
    max-width: 300px;
    height: auto;
}

/* ===== NOSSA ATUAÇÃO ===== */
.ourAct {
    width: 100%;
    padding: 60px 0;
    background-color: #E7E7E7;
    overflow: hidden;
}

.ourAct_inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ourAct_text {
    width: 50%;
    position: relative;
    padding-top: 40px;
}

.ourAct_text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #324C96;
    border-radius: 50%;
}

.ourAct_text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 15px;
    height: 15px;
    background-color: #FF8929;
    border-radius: 50%;
}

.ourAct_text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #333333;
}

.ourAct_text h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FF8929;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.ourAct_text h2::before {
    content: "";
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #324C96;
    border-radius: 50%;
}

.ourAct_text h2::after {
    content: "";
    position: absolute;
    right: -42px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #FF8929;
    border-radius: 50%;
}

.ourAct_text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.ourAct_stats {
    font-size: 16px !important;
    color: #333 !important;
}

.blue { color: #324C96 !important; font-size: 22px; }
.orange { color: #FF8929 !important; font-size: 22px; }

.ourAct_image {
    width: 50%;
    position: relative;
}

.ourAct_image img {
    width: 100%;
    height: auto;
    display: block;
}

.ourAct_image::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 60px;
    width: 15px;
    height: 15px;
    background-color: #324C96;
    border-radius: 50%;
}

.ourAct_image::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 35px;
    width: 15px;
    height: 15px;
    background-color: #FF8929;
    border-radius: 50%;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-overlay.is-open .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal h2 {
    font-size: 28px;
    color: #324C96;
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 15px;
    color: #777;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #324C96;
    box-shadow: 0 0 0 3px rgba(50, 76, 150, 0.1);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-submit {
    width: 100%;
    padding: 14px;
    background-color: #FF8929;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 5px;
}

.modal-submit:hover {
    background-color: #e67a1f;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .modal h2 {
        font-size: 24px;
    }
}

/* ===== FOOTER ===== */
footer {
    width: 100%;
    background-color: #3C4D92;
    border-top: 8px solid #FF8929;
    padding: 50px 0 0;
    color: #FFFFFF;
}

.footer_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer_col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer_col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer_col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #FF8929;
    border-radius: 2px;
}

.footer_brand {
    flex: 1;
    max-width: 350px;
}

.footer_logo {
    width: 200px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.footer_desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer_nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_nav li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer_nav li a:hover {
    color: #FF8929;
}

.footer_email {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer_socials {
    display: flex;
    gap: 12px;
}

.footer_socials a {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.footer_socials a:hover {
    border-color: #FF8929;
    background-color: #FF8929;
    transform: translateY(-3px);
}

.footer_bottom {
    margin-top: 40px;
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer_bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Header */
    header {
        height: auto;
        position: relative;
    }

    .header_container {
        flex-direction: column;
        gap: 12px;
        height: auto;
        padding: 10px 20px;
    }

    .logo img {
        height: 105px;
    }

    .nav_links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav_links li a {
        font-size: 15px;
    }

    /* Hero */
    .heroSection_inner {
        flex-direction: column;
        padding-top: 30px;
    }

    .heroSection_textContainer {
        width: 100%;
        text-align: center;
        align-items: center;
        padding-bottom: 25px;
    }

    .heroSection_textContainer h1 {
        font-size: 32px;
    }

    .heroSection_textContainer p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .heroSection_button {
        font-size: 20px;
        padding: 12px 28px;
        border-width: 5px;
    }

    .heroSection_imageContainer {
        width: 100%;
        justify-content: center;
    }

    /* Cards */
    .moreInfo {
        padding: 40px 0;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .icon-wrapper {
        height: auto;
    }

    .icon-wrapper img {
        width: 100px;
    }

    .card-item:not(:last-child) .icon-wrapper::after {
        content: none;
    }

    .card-item h2 {
        font-size: 20px;
    }

    .card-item p {
        font-size: 15px;
        max-width: 100%;
    }

    /* Quem Somos */
    .whoWheAre {
        padding: 40px 0;
    }

    .whoWheAre_inner {
        flex-direction: column;
        gap: 30px;
    }

    .whoWheAre_textContainer {
        width: 100%;
        text-align: center;
        padding-top: 35px;
    }

    .whoWheAre_textContainer::before {
        left: 50%;
        transform: translateX(-15px);
    }

    .whoWheAre_textContainer::after {
        left: 50%;
        transform: translateX(5px);
    }

    .whoWheAre_textContainer h2 {
        font-size: 32px;
    }

    .whoWheAre_textContainer h3 {
        font-size: 18px;
    }

    .whoWheAre_textContainer p {
        font-size: 16px;
    }

    .whoWheAre_cardContainer {
        width: 100%;
        padding: 30px 25px;
        border-radius: 40px;
        box-shadow: 12px 12px 0px 0px #FF8929;
        text-align: center;
    }

    .whoWheAre_cardContainer h1 {
        font-size: 70px;
    }

    .whoWheAre_cardContainer h1 span {
        font-size: 16px;
    }

    .whoWheAre_cardContainer li {
        font-size: 15px;
        padding-left: 30px;
        background-size: 18px;
    }

    /* Associe-se */
    .associate {
        padding: 40px 0;
    }

    .associate_inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .associate_text {
        width: 100%;
    }

    .associate_text button {
        font-size: 24px;
        padding: 12px 28px;
        border-width: 5px;
    }

    .associate_text button::before {
        right: -25px;
        width: 10px;
        height: 10px;
    }

    .associate_text button::after {
        right: -42px;
        width: 10px;
        height: 10px;
    }

    .associate_text p {
        font-size: 16px;
    }

    .associate_image {
        width: 100%;
    }

    .associate_image img {
        width: 60%;
        max-width: 200px;
        margin: 0 auto;
    }

    /* Nossa Atuação */
    .ourAct {
        padding: 40px 0;
    }

    .ourAct_inner {
        flex-direction: column;
        gap: 25px;
    }

    .ourAct_text {
        width: 100%;
        text-align: center;
        padding-top: 35px;
    }

    .ourAct_text::before {
        left: 50%;
        transform: translateX(-15px);
    }

    .ourAct_text::after {
        left: 50%;
        transform: translateX(5px);
    }

    .ourAct_text h1 {
        font-size: 32px;
    }

    .ourAct_text h2 {
        font-size: 18px;
    }

    .ourAct_text h2::before {
        right: -20px;
        width: 8px;
        height: 8px;
    }

    .ourAct_text h2::after {
        right: -35px;
        width: 8px;
        height: 8px;
    }

    .ourAct_text p {
        font-size: 16px;
    }

    .ourAct_image {
        width: 100%;
    }

    .ourAct_image::before {
        right: 20px;
        top: -10px;
    }

    .ourAct_image::after {
        right: 0;
        top: -10px;
    }

    /* Footer */
    .footer_container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: center;
    }

    .footer_brand {
        align-items: center;
        max-width: 100%;
    }

    .footer_logo {
        width: 150px;
        margin: 0 auto 15px;
    }

    .footer_col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer_nav {
        align-items: center;
    }

    .footer_contact_info {
        justify-content: center;
    }

    .footer_socials {
        justify-content: center;
    }

    .footer_bottom {
        margin-top: 25px;
        padding: 15px 20px;
    }
}

/* ===== ANIMATIONS ===== */

/* Header scroll shadow */
header {
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(231, 231, 231, 0.95);
    backdrop-filter: blur(10px);
}

/* Active nav link */
.nav_links li a.active {
    color: #FF8929;
    position: relative;
}

.nav_links li a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF8929;
    border-radius: 1px;
}

/* Hero entrance animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.is-visible,
.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll reveal: fade up */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll reveal: slide from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll reveal: slide from right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll reveal: slide up */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card hover effect */
.card-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 16px;
}

.card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.5);
}

/* "Quem somos" card hover */
.whoWheAre_cardContainer {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whoWheAre_cardContainer:hover {
    transform: translateY(-5px);
    box-shadow: 22px 22px 0px 0px #FF8929;
}

/* Button pulse on hover */
.heroSection_button,
.associate_text button {
    position: relative;
    overflow: hidden;
}

.heroSection_button::after,
.associate_text button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.heroSection_button:hover::after,
.associate_text button:hover::before {
    width: 300px;
    height: 300px;
}

/* Footer link hover slide */
.footer_nav li a {
    position: relative;
}

.footer_nav li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF8929;
    transition: width 0.3s ease;
}

.footer_nav li a:hover::after {
    width: 100%;
}

/* Image hover zoom */
.associate_image img,
.ourAct_image img {
    transition: transform 0.4s ease;
}

.associate_image:hover img,
.ourAct_image:hover img {
    transform: scale(1.03);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .fade-in-left,
    .fade-in-right,
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .card-item,
    .whoWheAre_cardContainer,
    .associate_image img,
    .ourAct_image img {
        transition: none;
    }
}
