header {
    position: absolute;
    width: 100%;
    z-index: 3;
    padding: 45px 0;
    .container-secundario {
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .logo {
            height: 100px;

            img {
                height: 100%;
                -o-object-fit: contain;
                   object-fit: contain;
            }
        }

        .hamburger-menu {
            display: none !important;
            flex-direction: column;
            cursor: pointer;
            z-index: 4;
            
            span {
                width: 25px;
                height: 3px;
                background-color: var(--quinary_neutral);
                margin: 3px 0;
                transition: 0.3s;
                border-radius: 2px;
            }
            
            &.active {
                span:nth-child(1) {
                    transform: rotate(-45deg) translate(-5px, 6px);
                }
                span:nth-child(2) {
                    opacity: 0;
                }
                span:nth-child(3) {
                    transform: rotate(45deg) translate(-5px, -6px);
                }
            }
        }

        nav {
            ul {
                display: flex;
                align-items: center;
                list-style: none;

                #point {
                    width: 5px;
                    height: 5px;
                    background-color: var(--tertiary_color);
                    border-radius: 50%;
                    margin: 0px 20px;
                }

                li {
                    transition: 0.3s;

                    &:hover {
                        transition: 0.3s;
                        scale: 1.1;
                    }

                    a {
                        color: var(--quinary_neutral);
                        text-decoration: none;
                        padding: 8px 12px;
                        font-weight: 700;
                        position: relative;
                        font-size: 20px;

                        &.active,
                        &[aria-current="page"],
                        &.anchor-active {
                            color: var(--secondary_color);
                        }
                    }
                }
            }
        }
    }
}

// Responsive styles
@media (max-width: 968px) {

    

    header {
        .container-secundario {
            .hamburger-menu {
                display: flex !important;
            }
            
            nav {
                position: fixed !important;
                top: 0 !important;
                right: -100% !important;
                width: 100% !important;
                height: 70vh !important;
                background-color: var(--primary_color) !important;
                transition: 0.3s !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                z-index: 3 !important;
                
                &.active {
                    right: 0 !important;
                }
                
                ul {
                    flex-direction: column !important;
                    gap: 30px !important;
                    
                    #point {
                        display: none !important;
                    }
                    
                    li {
                        a {
                            font-size: 24px !important;
                            padding: 15px 20px !important;
                        }
                    }
                }
            }
        }
    }
}

#particula {
    z-index: 0;
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
}

#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 0;
}
#section_banner_principal {
    width: 100%;
    z-index: 0;
    height: 70vh;
    font-family: 'Gabarito';
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }
}

.banner_principal {
    position: relative;
    z-index: 1; 
    color: var(--quinary_neutral);
    max-width: 868px;
    width: 100%;

    .banner_principal-btn {
        display: block;
        max-width: 200px;
        text-align: center;
        color: var(--secondary_color);
        margin-top: 30px;
        padding: 10px 30px;
        background-color: var(--primary_color);
        transition: .3s all ease-in-out;

        &:hover {
            background-color: var(--secondary_color);
            color: var(--primary_color);
            box-shadow: 10px 10px 0px #000;
        }
    }

    h2 {
        font-size: 48px;
        font-weight: 700;
        margin: 0 auto;
    }

    #line {
        margin: 20px auto;
        display: block;
        height: 2px;
        border-radius: 10px;
        background-color: var(--tertiary_color);
        width: 300px;
    }

    p {
        font-size: 22px;
        font-weight: 400;
    }
}

.banner_principal {
        padding-top: 64px;
    }

@media (max-width: 615px) {
    #section_banner_principal {
        height: 90vh;
    }

    
}
#servicos {
    height: 100%;
    padding: 80px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    h2 {
        text-align: center;
        font-size: 40px;
        font-family: 'Poppins';
        font-weight: 400;
        color: var(--secondary_color);
        margin-bottom: 80px;
    }

    & > .container-secundario {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;

        .card-service {
            color: transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            
            flex: 1 1 335px;
            height: 242px;
            background: linear-gradient(to left bottom, #017f36a9, rgba(0, 0, 0, 0.075));

            border-radius: 10px;
            border: 2px solid #017f36;
            transition: .3s ease-in-out all;

            &:hover {
                scale: 1.1;

                background-color: #017f36a9;

                span {
                    background-color: var(--primary_color);
                }

                i, p {
                    color: var(--primary_color);
                }
            }

            i {
                font-size: 2.5rem;
                color: var(--quinary_neutral);
            }
            
            span {
                margin: 15px 0 10px 0;
                width: 20px;
                display: block;
                border-radius: 10px;
                background-color: var(--secondary_color);
            }
            
            p {
                color: var(--quinary_neutral);
                font-size: 20px;
                font-family: 'Raleway';
                font-weight: 700;
                text-align: center;
                width: 170px;
            }
        }
    }
}

@media (max-width: 1024px) {
    #servicos {
        & > .container-primario {
            width: 90%;
        }
    }
}
#quemSomos {
    height: 100vh;

    .container-secundario {
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        height: 100%;

        .description {
            cursor: default;
            flex: 1 1 500px;
            padding: 0 180px;
            background-color: black;

            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: center;

            h2 {
                font-size: 64px;
                font-family: "Raleway";
                font-weight: 400;
                margin-bottom: 50px;
            }

            p {
                font-family: "Merriweather";
                color: #fff;
                font-size: 24px;
            }
        }
    }
}

.embla {
    flex: 1 1 500px;
    overflow: hidden;
    position: relative;
}

.embla__viewport {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.embla__container {
    display: flex;
    height: 100%;
}

.embla__slide {
    position: relative;
    flex: 0 0 85%;
    /* Permite visualizar o próximo slide */
    background-color: #111;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

    a {
        position: absolute;
        right: 32px;
        bottom: 18px;
        font-size: 1.6rem;

        transition: .3s;
        color: #fff;
        
        &:hover {
            transition: .3s;
            scale: 1.1;
        }
    }

    .embla__slide__description {
        position: absolute;
        height: 20%;
        bottom: 0;
        color: #fff;
        background-color: rgba(83, 83, 83, 0.747);
        text-align: left;
        padding: 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        
        h3 {
            font-size: 32px;
            font-family: 'Raleway';
            font-weight: 400;
            margin-bottom: 10px;
            cursor: default;
        }
        
        p {
            cursor: default;
            font-family: 'Raleway';
            font-size: 16px;
        }
    }
}

.embla__controls {
    display: flex;
    position: absolute;
    bottom: 32px;
    left: 32px;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.embla__buttons {
    display: none;
    gap: 1rem;
}

.embla__button {
    background: #222;
    border: 1px solid #444;
    border-radius: 50%;
    padding: 0.5rem;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.embla__button__svg {
    width: 100%;
    height: 100%;
}

.embla__dots {
    display: flex;
    gap: 0.5rem;
}

.embla__dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary_color);
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 768px) {
    #quemSomos {
        & .container-secundario {
            flex-direction: column;
            
        }
    }
}

@media (max-width: 1024px) {
    #quemSomos {
        & .container-secundario {
            .description {
                padding: 0 50px;
            }
        }
    }
}

@media (max-width: 768px) {
    #quemSomos {
        height: auto;
        & .container-secundario {
            .description {
                padding: 50px;
            }
        }
    }
    
    .embla__slide {
        .embla__slide__description {
            height: 50%;
        }
    }
}

@media (max-width: 425px) {
    .embla__slide {
        .embla__slide__description {
            height: 100%;
        }
    }
}
#processo {
    padding: 300px 0;
    background-color: var(--primary_color);
    overflow-x: hidden; /* Previne overflow horizontal */

    .processo-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 64px;

        .processCard {
            flex: 1 1 255px;
            position: relative;
            cursor: default;    
            perspective: 1000px;

            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: start;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            backdrop-filter: blur(12px);
            overflow: hidden;
            padding: 16px;
            transition: filter 0.4s ease;

            img {
                width: 148px;
                height: auto;
                -o-object-fit: contain;
                   object-fit: contain;
                margin-bottom: 16px;
                z-index: 1;
            }

            h3 {
                font-size: 16px;
                font-weight: bold;
                color: white;
                text-align: center;
                z-index: 1;
            }

            .processCard_icon {
                background-color: var(--quinary_neutral);
                border-radius: 100%;
                min-height: 120px;
                width: 120px;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-bottom: 2rem;
                
                i {
                    font-size: 3rem;
                    color: var(--primary_color);
                }
            }
            
            .processCard_bullet {
                position: absolute;
                top: 114px;
                cursor: default;
                z-index: 10;
                height: 40px;
                width: 40px;
                border-radius: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--secondary_color);
                
                span {
                    color: var(--primary_color);
                    cursor: default;
                }
            }

            .processCard__text {
                text-align: center;

                h4 {
                    font-size: 1.2rem;
                    margin-bottom: .5rem;
                }

                p {
                    text-align: justify;
                }
            }
        }
    }
}
#depoimentos > .container > .owl-carousel .owl-nav {
    display: none;
    justify-content: center;
}

#depoimentos > .container > .owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 16px;
}
#depoimentos > .container > .owl-carousel .owl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white !important;
    opacity: 1 !important;
    border: none;
    margin: 0 4px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: none;
    outline: none;
    position: relative;
}
#depoimentos > .container > .owl-carousel .owl-dot.active {
    background: var(--secondary_color) !important;
    transform: scale(1.1);
}

#barraEmbaixo {
    margin-bottom: 28px;
    height: 1.5px;
    border-radius: 5px;
    width: 72px;
    background-color: var(--secondary_color);
}

#depoimentos {
    background-color: var(--primary_color);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 300px 0;
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .testimonials-carousel {
        .testimonial-item {
            padding: 20px;
            
            .testimonial-content {
                background: rgba(255, 255, 255, 0.02); 
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 12px;
                backdrop-filter: blur(12px); 
                -webkit-backdrop-filter: blur(12px);
                overflow: hidden;
                padding: 30px;
                text-align: center;
                
                .testimonial-author {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 20px;
                    gap: 15px;
                    
                    .author-image {
                        width: 60px;
                        height: 60px;
                        border-radius: 50%;
                        -o-object-fit: cover;
                           object-fit: cover;
                        border: 3px solid var(--primary_color);
                    }
                    
                    .author-info {
                        text-align: left;
                        
                        .author-name {
                            font-weight: 600;
                            font-size: 18px;
                            color: var(--primary_color);
                            margin: 0 0 5px 0;
                            font-family: 'Poppins', sans-serif;
                        }
                        
                        .author-role {
                            font-size: 20px;
                            color: white;
                            margin: 0;
                            font-family: 'Nunito', sans-serif;
                        }
                    }
                }
                
                .testimonial-text {
                    font-size: 16px;
                    text-align: left;
                    color: white;
                    margin: 0;
                }
            }
        }
    }
    
    // Owl Carousel Navigation
    .owl-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        pointer-events: none;
        
        .owl-prev,
        .owl-next {
            position: absolute;
            width: 50px;
            height: 50px;
            background: var(--primary_color) !important;
            border-radius: 50%;
            color: white !important;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            pointer-events: all;
            
            &:hover {
                background: var(--secondary_color) !important;
                transform: scale(1.1);
            }
        }
        
        .owl-prev {
            left: -60px;
        }
        
        .owl-next {
            right: -60px;
        }
    }
    
    // Owl Carousel Dots
    .owl-dots {
        text-align: center;
        margin-top: 30px;
        
        .owl-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 5px;
            transition: all 0.3s ease;
            
            &.active {
                background: var(--primary_color);
                transform: scale(1.2);
            }
        }
    }
}

// Responsive adjustments
@media (max-width: 768px) {
    #depoimentos {
        .testimonials-carousel {
            .testimonial-item {
                .testimonial-content {
                    padding: 20px;
                    
                    .testimonial-author {
                        flex-direction: column;
                        text-align: center;
                        
                        .author-info {
                            text-align: center;
                        }
                    }
                }
            }
        }
        
        .owl-nav {
            .owl-prev {
                left: 10px;
            }
            
            .owl-next {
                right: 10px;
            }
        }
    }
}
#parceiros {
    background-color: var(--primary_color);
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;

    .partners-carousel {
        height: auto;

        .partner-item {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        img {
            height: 56px;
            max-width: 120px;
            -o-object-fit: contain;
               object-fit: contain;
            display: block;
            margin: 0 auto;
        }
    }

    .owl-dots {
        margin-top: 10px;
        text-align: center;
        .owl-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #fff !important;
            margin: 0 4px;
            opacity: 0.7;
            &.active {
                background: var(--secondary_color) !important;
                opacity: 1;
            }
        }
    }
}
#contato {
    background-color: var(--quaternary_color);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 400px;
    padding: 100px 0;
}
#convite_formulario {
    width: 380px;

    h3 {
        font-size: 48px;
        text-align: center;
        color: white;
        font-weight: 900;
    }

    .barra {
        margin: 0 auto;
        height: 2px;
        width: 80px;
        background-color: var(--secondary_color);
    }
}
#contato > .container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
}
#form-projeto {
    width: 100%;
    justify-content: center;
    display: flex;
    gap: 50px;
}

.inputs {
    width: 300px;
}

#convite_formulario {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    .barra + p {
        color: white;
        text-align: center;
    }
}

#convite_formulario {
    button {
        margin-bottom: 15px;
        transition: .3s;

        &:hover {
            transition: .3s;
            scale: 1.05;
        }
    }
}

#btn-enviar-mobile {
    margin-bottom: 15px;
    transition: .3s;

    &:hover {
        transition: .3s;
        scale: 1.05;
    }
}

#form-projeto .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
#form-projeto label {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}
#form-projeto input, #form-projeto select {
    border-radius: 6px;
    border: none;
    padding: 8px 12px;
    font-size: 15px;
    background: #fff;
    color: #222;
    outline: none;
}
#form-projeto select {
    color: #222;
}
#form-projeto .error-message {
    color: #e74c3c;
    font-size: 12px;
    min-height: 16px;
}
#btn-enviar-mobile, #btn-enviar {
    margin-top: 16px;
    background: #1a2250;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
#btn-enviar-mobile:disabled, #btn-enviar:disabled {
    background: #888;
    cursor: not-allowed;
}
#form-success {
    background: #1a2250;
    border-radius: 6px;
    padding: 12px 0;
    margin-top: 10px;
}

@media (max-width: 900px) {
    #contato {
        flex-direction: column;
        align-items: center;
    }
    #form-projeto {
        width: 100%;
        max-width: 350px;
    }
}
#blogs {
    margin: 100px 0;
    padding: 100px 0;

    .blogs-header {
        border-radius: 20px;

        display: flex;
        flex-wrap: wrap;
        gap: 25px;

        .card-blog-header {
            box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
            border-radius: 22px;
            flex: 1 1 360px;
            text-decoration: none;
            cursor: pointer;

            p {
                cursor: pointer;
            }
        }

        .card-blog-header__image {
            height: 230px;
            border-radius: 28px 28px 0 0;
            background-color: var(--quinary_neutral);

            img {
                border-radius: 20px 20px 0 0;
                height: 100%;
                width: 100%;
                -o-object-fit: cover;
                   object-fit: cover;
            }
        }

        .card-blog-header__text {
            background: #017f36a6; 
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0 0 12px 12px;
            backdrop-filter: blur(12px); 
            -webkit-backdrop-filter: blur(12px);
            overflow: hidden;
            padding: 20px 30px;

            color: white;

            .blog-date {
                margin-top: 20px;
            }
        }
    }
}

@media (max-width: 750px) {
    #form-busca {
        width: 100%;
        max-width: none !important;
    }
    .form-busca-input {
        width: 100%;

        #input-busca {
            width: 100%;
        }
    }
}
#show-blog {
    background: var(--primary_color);
    min-height: 100vh;
    padding: 60px 0;

    .show-blog-container {
        margin: 0 auto;
        background: rgba(255,255,255,0.97);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        padding: 40px 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .show-blog-title {
        font-family: 'Poppins', sans-serif;
        font-size: 2.2rem;
        color: var(--primary_color);
        font-weight: 700;
        margin-bottom: 18px;
        text-align: center;
    }
    .show-blog-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        font-size: 1rem;
        color: var(--secondary_color);
        margin-bottom: 24px;
        justify-content: center;
    }
    .show-blog-images {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        margin-bottom: 28px;

        img {
            flex: 1 1 220px;
            cursor: zoom-in;    
        }
    }
    .show-blog-img {
        width: 100%;
        border-radius: 10px;
        -o-object-fit: cover;
           object-fit: cover;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        background: #eee;
    }
    .show-blog-context {
        font-size: 1.15rem;
        color: #222;
        margin-top: 18px;
        text-align: left;
        width: 100%;
        line-height: 1.7;

        img {
            width: 100%;
            height: auto;
            cursor: zoom-in;
    
            transition: 0.3s;
            &:hover {
                scale: 1.02;
                transition: 0.3s;
            }
        }
    }
}

// Modal de imagem em tela cheia
#image-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.2s;
}
#image-modal img#modal-img {
    max-width: 90vw;
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    background: #fff;
}
#close-image-modal {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    font-family: sans-serif;
    z-index: 2100;
    transition: color 0.2s;
}
#close-image-modal:hover {
    color: var(--primary_color, #ff5252);
}
@media (max-width: 600px) {
    #close-image-modal {
        top: 16px;
        right: 16px;
        font-size: 2rem;
    }
    #image-modal img#modal-img {
        max-width: 98vw;
        max-height: 70vh;
    }
}

@media (max-width: 900px) {
    #show-blog .show-blog-container {
        padding: 20px 6vw;
    }
    #show-blog .show-blog-title {
        font-size: 1.3rem;
    }
    #show-blog .show-blog-img {
        max-width: 100%;
        max-height: 180px;
    }
} 
#rodape {
    background-color: var(--secondary_color);
    padding: 100px;
    color: white;

    .logo {
        margin-bottom: 4rem;
        a {
            display: block;
            width: 200px;
            margin: 0 auto;
            img {
                -o-object-fit: contain;
                   object-fit: contain;
            }
        }
    }

    .container-rodape {
        display: flex;
        justify-content: center;
        gap: 30px;
        
        .left-rodape {
            nav {
                margin: 0 0 30px 0;
                ul {
                    list-style: none;
    
                    li {

                        a {
                            color: white;
                            font-weight: bold;
                            font-size: 24px;
                            transition: 0.3s;

                            &:hover {
                                transition: 0.3s;
                                color: var(--tertiary_color);
                            }
                        }
                    }
                }
            }
        }

        .right-rodape {
            .redes-sociais {
                display: flex;
                gap: 30px;
                
                a:hover {
                    transition: 0.3s;
                    scale: 1.4;
                }

                a {
                    transition: 0.3s;
                    
                    img {
                        width: 25px;
                    }

                    #instagramImage {
                        width: 35px;
                    }
                    
                    #linkedinImage {
                        width: 35px;
                    }
                }
            }
            div {
                h3 {
                    font-size: 24px;
                }

                p {
                    font-size: 20px;
                }
            }
        }
    }
}

@media (max-width: 900px) {
    #rodape {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;
        padding: 100px 50px;
    }

    .container-rodape {
        flex-direction: column;
        gap: 30px;
        margin: 30px 0;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .right-rodape > div:nth-child(2) {
        flex-direction: column;
        align-items: start;
    }

    .endereco_rodape {
        & > div {
            flex-direction: column;
            gap: 30px;
        }

        .redes-sociais {
            flex-direction: row;
        }
    }
}

#ultimosBlogs {
    width: 100%;
    padding: 0 20px;
    
    .blogs-header__ultimos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 25px auto 0;
        padding: 40px 0;
        
        @media (max-width: 768px) {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 20px 0;
        }
        
        .item {
            width: 100%;
            box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
            border-radius: 24px;
            transition: all 0.3s ease;
            
            &:hover {
                transform: scale(1.05);
            }
        }
    }
    
    .card-blog-header {
        display: flex;
        flex-direction: column;
        height: 100%;
        text-decoration: none;
        cursor: pointer;
        
        p {
            cursor: pointer;
        }
    }
    
    .card-blog-header__image {
        height: 230px;
        border-radius: 28px 28px 0 0;
        background-color: var(--quinary_neutral);
        flex-shrink: 0;
        
        img {
            border-radius: 20px 20px 0 0;
            height: 100%;
            width: 100%;
            -o-object-fit: cover;
               object-fit: cover;
        }
    }
    
    .card-blog-header__text {
        background: var(--primary_color); 
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0 0 12px 12px;
        backdrop-filter: blur(12px); 
        -webkit-backdrop-filter: blur(12px);
        overflow: hidden;
        padding: 20px 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        
        color: white;
        
        .blog-date {
            margin-top: 20px;
        }
    }
}
#ultimosBlogs {
    margin: 100px 0 150px 0;

    .blogs-header__home {    
        width: 80%;
        margin: 0 auto;

        display: flex;
        flex-wrap: wrap;
        gap: 30px;

        .item {
            flex: 1 1 360px;
            box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
            border-radius: 24px;
            transition: all 0.3s ease;

            &:hover {
                transform: scale(1.05);
            }
        }

        .card-blog-header {
            text-decoration: none;
            cursor: pointer;
        
            p {
                cursor: pointer;
            }
        }
        
        .card-blog-header__image {
            height: 230px;
            border-radius: 28px 28px 0 0;
            background-color: var(--quinary_neutral);
        
            img {
                border-radius: 20px 20px 0 0;
                height: 100%;
                width: 100%;
                -o-object-fit: cover;
                   object-fit: cover;
            }
        }
        
        .card-blog-header__text {
            background: var(--primary_color);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0 0 12px 12px;
            backdrop-filter: blur(12px); 
            -webkit-backdrop-filter: blur(12px);
            overflow: hidden;
            padding: 20px 30px;
        
            color: white;
        
            .blog-date {
                margin-top: 20px;
            }
        }
    }
}

#endereco {
    margin: 100px 0;

    .container {
        width: 80%;
        margin: 0 auto;
    }

    .endereco_rodape {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .redes-sociais {
                display: flex;
                gap: 30px;
                
                a:hover {
                    transition: 0.3s;
                    scale: 1.4;
                }

                a {
                    transition: 0.3s;
                    
                    img {
                        width: 25px;
                    }

                    #instagramImage {
                        width: 35px;
                    }
                    
                    #linkedinImage {
                        width: 35px;
                    }
                }
            }
    }

    iframe {
        width: 100%;
    }

    font-size: 20px;
    color: white;
}

@media (max-width: 900px) {
    .endereco_rodape {
        flex-direction: column;
        gap: 30px;
        margin: 30px 0  ;
    }
}
#norteadores-da-empresa {
    .container {
        display: flex;
        
        .left {
            position: relative;
            padding: 128px 50px;
            background-color: var(--quinary_neutral);
            width: 50%;

            h3 {
                font-size: 40px;
                font-weight: 400;
                color: var(--secondary_color);
            }
            
            .card {
                background-color: var(--secondary_color);
                
                h4 {
                    color: black;
                }

                p {
                    color: black;
                }
            }

            & > div:nth-child(2) {
                margin: 2rem 0;
            }
            
        }
        
        .right {
            position: relative;
            width: 50%;
            padding: 128px 50px;
            background-color: var(--secondary_color);
            
            .card {
                background-color: var(--primary_color);
                margin-top: 87px;
                height: -webkit-fill-available;

            }
        }
        
        & > div {
            .card {
                border-radius: 20px;
                padding: 2rem;
                text-align: justify;

                box-shadow: 10px 10px 0px #000;

                h4 {
                    font-size: 1.4rem;
                    margin-bottom: 1rem;
                }

                transition: all 0.3s ease-in-out;

                &:hover {
                    scale: 1.05;
                }
            }
        }
    }
}

.cardMission {
    display: none;
}

@media (max-width: 900px) {
    #norteadores-da-empresa {
        .container {
            flex-direction: column;
            
            & > div {
                width: 100% !important;
            }
            
            .right {
                display: none !important;
            }
        }
    }
    
    .cardMission {
        display: block;
        margin-top: 2rem;
    }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito";
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

[data-aos] {
  overflow-x: hidden;
}

p, label, h1, h2, h3, h4 {
  cursor: default;
}

a {
  text-decoration: none;
}

body {
  background-color: var(--primary_color);
}

.container-primario {
  width: 50%;
  margin: 0 auto;
}

.container-secundario {
  width: 90%;
  margin: 0 auto;
}

.highlight {
  color: var(--quinary_neutral);
  font-weight: 800; /* opcional */
}

#btn-enviar-mobile {
  display: none;
}

#btn-enviar {
  display: block;
}

@media (max-width: 968px) {
  header .container-secundario .hamburger-menu {
    display: flex !important;
  }
  header .container-secundario nav {
    display: none !important;
  }
  header .container-secundario nav.active {
    display: flex !important;
  }
  header .container-secundario nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: var(--primary_color) !important;
    transition: 0.3s !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 3 !important;
  }
  header .container-secundario nav ul {
    flex-direction: column !important;
    gap: 30px !important;
  }
  header .container-secundario nav ul #point {
    display: none !important;
  }
  header .container-secundario nav ul li a {
    font-size: 24px !important;
    padding: 15px 20px !important;
  }
}
@media (min-width: 969px) {
  header .container-secundario .hamburger-menu {
    display: none !important;
  }
  header .container-secundario nav {
    display: flex !important;
    position: static !important;
    height: auto !important;
    background: none !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }
}
@media (max-width: 968px) {
  #form-projeto {
    width: 80%;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #btn-enviar-mobile {
    display: block;
  }
  #btn-enviar {
    display: none;
  }
  #contato {
    justify-content: center;
  }
  #form-projeto > .inputs, #form-projeto > #convite_formulario {
    width: 100%;
  }
  #btn-enviar-mobile {
    display: block;
  }
  #convite_formulario {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  #form-projeto {
    width: 90%;
  }
  #form-projeto input, #form-projeto select, #form-projeto button {
    padding: 20px;
  }
  #form-projeto .form-group label {
    font-size: 1.2rem;
  }
  .circle {
    display: none;
  }
}
