@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scrollbar-width: 10px;
    scrollbar-color: #ababab;
}

p,
span,
a,
h1,
h2,
h3 {
    font-family: "IBM Plex Mono", monospace;
}

#app {
    background-color: #f5f5f5;
    margin: 0 auto;
    width: 100%;
}

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

/* Barra de scroll */
*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-thumb {
    background-color: #c9c9c9;
    border-radius: 2px;
}

/* Barra de navegação */
header {
    width: 100%;
    height: 100px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all ease-in-out;
    position: absolute;
    top: 0;
    z-index: 15;
}

header nav {
    width: 100%;
    height: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav .header-logo {
    width: 250px;
    display: flex;
}

header nav .header-logo img {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

header nav .header-logo img:hover {
    opacity: .7;
    transition: all 0.3s ease-in-out;
}

header nav ul {
    width: 450px;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header nav ul li a {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}

header.sticky nav ul li a {
    color: #296994;
    transition: all 0.3s ease-in-out;
}

header nav ul li a:hover {
    opacity: .7;
    transition: all 0.3s ease-in-out;
}

.menu-mobile-list {
    display: none;
}

header nav .menu-mobile {
    display: none;
}

main {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    background-color: #1F2024;
}

/* home */
@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(300px);
        opacity: 0;
        transform: translateY(300px);
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(300px);
        opacity: 0;
        transform: translateY(300px);
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-top {
    -webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.hidden {
    opacity: 0;
}

.banner {
    width: 100%;
    position: relative;
    background-color: #000000;
    transition: all 0.3s ease-in-out;
}

.banner::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: linear-gradient(to right, #000000 5%, rgba(0, 0, 0, 0) 100%);
}

.banner .img {
    width: 100%;
    height: 100dvh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: .75;
}

.banner.banner-01 .img {
    background-image: url('./imgs/Prim_banner_home.jpg');
}

.banner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.067) 40%, #0000008f 100%);
}

.container-blur {
    width: 40%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-y: hidden;
}

.container-blur::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 70%;
    left: 0;
    z-index: 6;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.container-blur::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 30%;
    z-index: 6;
    right: 0;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.container-blur .content-h1 {
    width: 100%;
    height: 60%;
    padding: 15px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.container-blur .content-h1 h1 {
    color: #e7ae38;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    z-index: 9;
    transition: all 0.3s ease-in-out;
    animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.container-blur .content-span {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.container-blur .content-span span {
    color: #ffffffbb;
    font-size: .8rem;
    font-weight: 200;
    text-align: justify;
    letter-spacing: 1px;
    line-height: 25px;
    z-index: 9;
    animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) .4s both;
}

.banner-text {
    position: absolute;
    bottom: 85px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.banner-text p {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    letter-spacing: 2px;
    transition: all 0.3s ease-in-out;
    animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) .2s both;
}

.container-blur .content-h1 h1.sticky {
    z-index: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.banner-text p.sticky {
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.content-separetor {
    position: absolute;
    bottom: -5px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    z-index: 10;
}

/* sobre */
#about {
    width: 100%;
    height: 550px;
}

.about-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container .content {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-container .content .about-image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.content .about-image img {
    width: 100%;
    max-width: 600px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    padding: 10px;
    opacity: 0.8;
}

.about-container .content .about-title {
    width: 100%;
    height: auto;
    color: #f5f5f5;
    font-size: 4rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 25px 25px;
}

.about-container .content .about-text {
    width: 100%;
    height: auto;
    color: #f5f5f5;
    font-size: .95rem;
    font-weight: 200;
    padding: 0 25px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    text-align: justify;
    line-height: 25px;
    gap: 20px;
}

/* serviços */
.services-container {
    width: 100%;
    max-width: 1500px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.titles-container {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 50px;
}

.titles-container span {
    color: #f5f5f5;
    opacity: 0.5;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.titles-container p {
    color: #296994;
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;
}

.services-content {
    width: 95%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}

.services-content .services-card {
    width: 350px;
    height: 100px;
    display: flex;
    box-shadow: 0px 0px 5px rgba(93, 93, 93, 0.159);
    border-radius: 10px;
}

.services-content .services-card .card-icon {
    width: 20%;
    display: flex;
    justify-content: center;
    padding: 25px 0 0;
    font-size: 30px;
    color: #f5f5f5;
}

.services-content .services-card .card-information {
    width: 80%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
}

.services-content .services-card .card-information p {
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 40px;
}

.services-content .services-card .card-information span {
    color: #f5f5f59d;
    font-size: 15px;
    font-weight: 200;
}

.services-image-container {
    width: 100%;
    height: auto;
    padding: 50px 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image-container .images-container {
    width: 95%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.services-image-container .images-container .image-content {
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image-container .images-container .image-content .images {
    width: 60%;
    height: 350px;
    display: flex;
    padding: 20px;
    gap: 3px;
}

.services-image-container .images-container .image-content .images img {
    width: 5%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.277);
    flex: 1;
    border-radius: 3px;
    display: flex;
    transition: all .5s ease-in;
}

.services-image-container .images-container .image-content .images img:hover {
    flex: 3;
    width: 80%;
}

.services-image-container .images-container .image-content .image-texts {
    width: 40%;
    display: flex;
    padding: 20px;
}

.services-image-container .images-container .image-content .image-texts span {
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    text-align: justify;
}

.mySwiper {
    display: none;
}

/* contato */
.contact-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container .contact-form-container {
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 150px;
}

.contact-container .contact-title {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 50px;
}

.contact-container form {
    width: 100%;
    height: auto;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-container form .inputs-container {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-container form .textarea-container {
    width: 100%;
    max-width: 1000px;
    height: 200px;
    display: flex;
}

.contact-container form .textarea-container .input-group textarea {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    max-height: 250px;
    outline: none;
    resize: none;
}

.input-group {
    position: relative;
}

.input-group.textarea-group {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 100%;
}

.input {
    border: solid 1.5px #9e9e9e;
    border-radius: 5px;
    background: none;
    padding: 1rem;
    font-size: 1rem;
    color: #ffffff;
    transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Roboto", sans-serif;
}

.user-label {
    position: absolute;
    left: 15px;
    color: #9e9e9e;
    pointer-events: none;
    transform: translateY(1rem);
    transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Roboto", sans-serif;
}

.input:focus,
input:valid {
    outline: none;
    border: 1.5px solid #296994;
}

.input:focus,
textarea:valid {
    outline: none;
    border: 1.5px solid #296994;
}

.input:focus~label,
input:valid~label {
    transform: translateY(-50%) scale(0.8);
    background-color: #1F2024;
    padding: 0 .2em;
    color: #296994;
}

.input:focus~label,
textarea:valid~label {
    transform: translateY(-50%) scale(0.8);
    background-color: #1F2024;
    padding: 0 .2em;
    color: #296994;
}

.contact-button {
    width: 90%;
    max-width: 1000px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.contact-button button {
    width: 100%;
    max-width: 250px;
    height: 50px;
    max-height: 50px;
    background-color: #296994;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all .25s ease-in-out;
}

.contact-button button:hover {
    background-color: #357baa;
    transition: all .25s ease-in-out;
}

/* Footer */
footer .footer-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

footer .footer-container .footer-info {
    width: 100%;
    max-width: 1400px;
    height: 300px;
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    padding: 20px 0;
}

footer .footer-container .footer-info .footer-logo {
    width: 30%;
    max-width: 200px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-container .footer-info .footer-logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}

footer .footer-container .footer-info .footer-address {
    width: 30%;
    height: auto;
    justify-content: space-evenly;
    align-items: center;
    max-width: 200px;
}

footer .footer-container .footer-info .footer-address span {
    color: #0000008c;
    font-size: 14px;
    font-weight: 400;
}

footer .footer-container .footer-info .footer-address span p {
    color: #0000008e;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    padding: 15px 0 0;
}

footer .footer-container .footer-info .footer-social {
    width: 25%;
    max-width: 250px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

footer .footer-container .footer-info .footer-social .footer-social-title {
    color: #0000008e;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    padding: 15px 0 0;
}

footer .footer-container .footer-info .footer-social .footer-social-icons {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

footer .footer-container .footer-info .footer-social .footer-social-icons a {
    color: #bcbcbc;
    font-size: 28px;
    transition: all .25s ease-in-out;
}

footer .footer-container .footer-info .footer-social .footer-social-icons a:hover {
    color: #296994;
    transition: all .25s ease-in-out;
}

footer .footer-container .footer-text {
    width: 100%;
    height: auto;
    padding: 15px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #1F2024;
}

footer .footer-container .footer-text p {
    color: #f5f5f5;
    font-size: 13px;
    font-weight: 400;
}

footer .footer-container .footer-text p a {
    text-decoration: none;
    color: #f5f5f5;
    transition: all .25s ease-in-out;
}

footer .footer-container .footer-text p a:hover {
    color: #296994;
    transition: all .25s ease-in-out;
}

footer .footer-container .footer-text span {
    background-color: #f5f5f5;
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

/* Botão flutuante whatsapp */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 233, 121, 0.186);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(56, 233, 121, 0.186);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(56, 233, 121, 0.186);
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 20;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.whatsapp-button .go-top {
    display: none;
    transition: .3s all ease-in-out;
}

.whatsapp-button .go-top.active,
.whatsapp-button .go-top.active a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000000;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    transition: .3s all ease-in-out;
}

.whatsapp-button .go-top.active:hover,
.whatsapp-button .go-top.active a:hover {
    background-color: #00000097;
    transition: .3s all ease-in-out;
}

.whatsapp-button div:last-child,
.whatsapp-button div:last-child a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #38e979;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .25s all ease-in-out;
    animation: pulse 2.5s infinite;
    font-size: 30px;
}

.whatsapp-button div a:hover {
    background-color: #22d363;
    transition: .25s all ease-in-out;
}

@media (max-width: 1024px) {
    .services-image-container .images-container .image-content .images {
        display: none;
    }

    .mySwiper {
        display: flex;
        width: 55%;
        height: 280px;
        display: flex;
        padding: 0;
        gap: 3px;
    }
    
    .swiper-slide {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 3px;
    }

    .swiper-pagination-bullet {
        background-color: #f5f5f5;
    }

    .services-image-container .images-container .image-content .image-texts {
        width: 45%;
    }

    .services-image-container .images-container .image-content {
        padding: 10px 0;
    }
}

@media (max-width: 1000px) {
    #about {
        height: auto;
        padding-top: 30px;
    }

    .container-blur {
        width: 60%;
    }

    .container-blur .content-h1 {
        justify-content: center;
        align-items: end;
        height: 35%;
    }

    .container-blur .content-h1 h1 {
        padding-right: 100px;
    }

    .container-blur .content-span {
        height: 65%;
    }

    .about-container {
        height: auto;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        position: relative;
    }

    .about-container .content {
        width: 100%;
        height: auto;
    }

    .about-container .content:first-child {
        position: absolute;
        top: 0;
        right: 10px;
        width: 320px;
    }

    .content .about-image img {
        max-width: 100%;
        width: auto;
        height: 250px;
        opacity: .2;
    }

    .services-content {
        flex-direction: column;
    }

    .services-content .services-card {
        width: 95%;
    }

    .services-content .services-card .card-icon {
        width: 15%;
    }

    .contact-container .contact-form-container {
        width: 95%;
    }

    .contact-container form {
        padding: 20px 0;
    }

    .contact-container form .inputs-container {
        justify-content: center;
        gap: 20px;
    }

    .input-group {
        width: 48%;
    }

    .input {
        width: 100%;
    }

    .input-group.textarea-group {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    header nav ul {
        display: none;
    }

    header nav .menu-mobile {
        display: flex;
    }

    header nav .menu-mobile i {
        color: #fff;
        font-size: 30px;
        cursor: pointer;
        transition: all .5s ease-in-out;
    }

    header.sticky nav .menu-mobile i {
        color: #296994;
        transition: all .5s ease-in-out;
    }

    header nav ul li a {
        color: #296994;
    }

    header.sticky nav.active {
        border-bottom: 1px solid #296994;
    }

    .menu-mobile-list {
        display: none;
    }

    .menu-mobile-list.active {
        display: flex;
        position: absolute;
        top: 100px;
        width: 100%;
        height: 200px;
        z-index: 5;
        left: 0;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.371);
        backdrop-filter: blur(100px);
        -webkit-backdrop-filter: blur(100px);
        background-color: #00000059;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .menu-mobile-list.active .menu-ul-mobile {
        display: flex;
        width: 100%;
        flex-direction: column;
        height: 100%;
        align-items: center;
    }

    @-webkit-keyframes menu-open {
        0% {
            -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes menu-open {
        0% {
            -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
        }
    }

    .menu-open-animation {
        -webkit-animation: menu-open 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: menu-open 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }

    @-webkit-keyframes menu-close {
        0% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
            opacity: 1;
        }
    }

    @keyframes menu-close {
        0% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
            opacity: 1;
        }
    }

    .menu-close-animation {
        -webkit-animation: menu-close cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: menu-close cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }

    .banner-text p {
        font-size: 3rem;
    }

    .container-blur {
        width: 100%;
    }

    .container-blur .content-h1 {
        justify-content: center;
    }

    .container-blur .content-h1 h1 {
        padding-right: 0;
    }

    .services-image-container .images-container .image-content {
        flex-direction: column;
        width: 100%;
    }

    .services-image-container .images-container .image-content .image-texts {
        order: 2;
    }

    .mySwiper {
        order: 1;
        width: 100%;
        height: 340px;
    }

    .services-image-container .images-container .image-content .image-texts {
        width: 100%;
    }

    .input-group.textarea-group {
        padding: 0;
    }

    .contact-button {
        width: 100%;
    }

    footer .footer-container .footer-info .footer-logo {
        width: 100%;
        max-width: 100%;
    }

    footer .footer-container .footer-info {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    footer .footer-container .footer-text {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-container .footer-text span {
        display: none;
    }

    footer .footer-container .footer-text p {
        font-size: 9px;
    }

    footer .footer-container .footer-info .footer-address {
        width: 100%;
    }

    footer .footer-container .footer-info .footer-social {
        width: 100%;
        align-items: start;
        max-width: 200px;
        gap: 0;
    }

    footer .footer-container .footer-info .footer-social .footer-social-icons {
        justify-content: start;
        gap: 15px;
    }

    footer .footer-container .footer-info .footer-logo a {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    footer .footer-container .footer-info .footer-logo img {
        max-width: 150px;
    }
}

@media (max-width: 600px) {

    .banner .img {
        background-attachment: scroll;
    }

    .container-blur .content-h1 h1 {
        font-size: .85rem;
    }

    .container-blur .content-span span {
        font-size: .7rem;
    }

    .content-separetor div {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .content .about-image img {
        border-radius: 0;
    }

    .about-container {
        padding: 0;
    }

    .about-container .content .about-title {
        font-size: 2rem;
    }

    .about-container .content .about-text {
        font-size: .7rem;
    }

    .about-container .content:first-child {
        right: 0;
        top: -15px;
        width: 220px;
    }

    .content .about-image img {
        height: 150px;
    }

    .services-image-container .images-container .image-content .image-texts span {
        font-size: .8rem;
    }

    .titles-container span {
        font-size: .85rem;
    }

    .titles-container p {
        font-size: 1.2rem;
        line-height: 30px;
    }

    .services-content .services-card .card-icon {
        width: 20%;
        padding: 0;
        align-items: center;
    }

    .services-content .services-card .card-information p {
        font-size: 17px;
    }

    .services-content .services-card .card-information span {
        font-size: 14px;
    }

    .services-content .services-card .card-icon {
        font-size: 25px;
    }

    .titles-container {
        height: auto;
        padding: 25px 0;
    }

    .contact-button button {
        max-width: 100%;
    }

    .input-group {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .banner-text p {
        font-size: 1.8rem;
    }
}