.whatsapp-btn {
    position: fixed;
    bottom: 1.2vw;
    right: 1.2vw;
    width: 4vw;
    height: 4vw;
    z-index: 1000;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 255, 38);
    font-size: 3.2vw;
    /* Tamanho do ícone */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.whatsapp-btn {
    animation: whatsapp-pulse 2s infinite;
}


.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar button,
.sidebar a {
    border-color: transparent;
    background-color: transparent;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar button:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.main {
    font-family: Arial, sans-serif;
    color: #333;
}

.menu {
    display: flex;
    align-items: center;
    padding: 0.8vw 12vw;
    background-color: #f8f8f8;
    justify-content: space-between;
}

#menu {
    display: flex;
}


.logo {
    height: 60px;
}

#btns-menu ul {
    gap: 3vw;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 1vw;
    list-style: none;
}

nav a {
    color: #333;
    text-decoration: none;
}

.social-icons {
    list-style: none;
    display: flex;
    gap: 2vw;
}

.social-icons li {
    display: inline;
}

.social-icons a {
    text-decoration: none;
    color: #000;
    font-size: 2vw;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-container img {
    width: 100%;
    max-height: 500px;
}

.carousel slide button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}

.carousel-inner {
    width: 100%;
    max-height: 80vw;
}

.carousel-item .row {
    justify-content: center;
}

.carousel-inner img {
    max-height: 40vw;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.carousel-control-prev-icon {
    translate: -3vw;
    transform: scale(1.5);
}

.carousel-control-next-icon {
    translate: 3vw;
    transform: scale(1.5);
}

.about,
.services,
.clients,
.contact {
    padding: 1vw 15vw;
}

.about h1,
.services h1,
.clients h1,
.contact h1 {
    margin-left: 1vw;
    font-size: 2vw;
    font-weight: 400;
}

hr {
    height: 2px;
    background-color: #000;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 8vw;
    margin: 2vw;
}

.services-container {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.9vw;
}

.service-item {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    width: calc(33.333% - 30px);
    box-sizing: border-box;
    border-radius: 0.6vw;
}

.service-item img {
    width: 100%;
    height: 13vw;
    object-fit: cover;
    object-position: top;
    border-radius: 0.4vw;
}

.client-container {
    display: flex;
    gap: 3vw;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.client-logo {
    border: 1px solid #ddd;
    padding: 15px;
    width: 14vw;
    border-radius: 0.6vw;
}

.client-logo img {
    width: 100%;
    height: 7.5vw;
    object-fit: cover;
    border-radius: 0.4vw;
}

.contact {
    margin: 0 auto;
}

.contact-box {
    display: flex;
    justify-content: space-around;
}

.left-box,
.right-box {
    width: 48%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.left-box {
    text-align: center;
    padding: 1vw 3vw;
}

.whatsapp-button {
    border: none;
    background: none;
    margin-bottom: 1vw;
    transition: scale 0.5s;
}

.whatsapp-button:hover {
    scale: 1.15;
    transition: 0.5s;
}

.whatsapp-button img {
    width: 100%;
}

.email-box,
.phone-box,
.hours-box {
    padding-left: 0.5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.email-text,
.phone-text,
.hours-text {
    padding: 0.5vw 0 0 1.2vw;
}

.location-container {
    padding: 1vw;
    border: 1px solid #ccc;
    border-radius: 0.4vw;
    margin: 1.5vw 0.7vw;
}

iframe {
    margin-top: 0.2vw;
    border-radius: 0.5vw;
    width: 100%;
    height: 450px;
    border: none;
}

footer {
    padding: 1vw 15vw;
    background-color: #000000;
    color: lightgray;
}

footer h5 {
    color: yellow;

}

.footer-container-top,
.footer-container-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-menu,
.footer-infos,
.footer-contact {
    width: 18vw;
    padding: 0.5vw;
}

.footer-contact .phone,
.email {
    display: flex;
    align-items: center;
}

.footer-contact .phone p,
.email p {
    padding: 0.6vw 0 0 0.6vw;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #d3d3d3;
    margin-bottom: 0.2vw;
    transition: margin-left 0.5s;
    width: max-content;
}

.footer-menu a:hover {
    color: white;
    margin-left: 0.6vw;
    transition: 0.5s;
}

.fa-chevron-right {
    font-size: 0.6em;
    margin-right: 0.6vw
}

.footer-info {
    margin-top: 10px;
}

.footer-container-bottom {
    margin: -0.5vw 1vw;
    align-items: center;
}

footer .social-icons a {
    text-decoration: none;
    color: #ffffff;
    font-size: 2vw;
}


@media (max-width: 1200px) {
    .whatsapp-btn {
        bottom: 3.5vw;
        right: 3.5vw;
        font-size: 5vw;
    }

    #btns-menu li {
        font-size: 1.7vw;
    }

    .menu .social-icons {
        display: none;
    }

    .about-container,
    .contact-box {
        flex-direction: column;
    }

    .about h1,
    .services h1,
    .clients h1,
    .contact h1 {
        font-size: 3vw;
    }

    .service-item {
        width: 100%;
    }

    .service-item img {
        height: 30vw;
    }

    .client-logo {
        width: 100%;
    }

    .client-logo img {
        height: 36vw;
    }

    .left-box,
    .right-box {
        width: 100%;
        margin-bottom: 2vw;
    }

    .location-container h3 {
        text-align: center;
        margin: 1vw;
    }

    .footer-menu {
        display: none;
    }

    .footer-infos {
        display: none;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0.5vw 17vw;
        width: 36vw;
        font-size: larger;
    }

    .footer-info {
        display: none;
    }

    .social-icons a {
        font-size: 5vw;
    }

    .footer-container-bottom .social-icons {
        margin: 0.5vw 15vw;
        gap: 10vw;
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 5vw;
        right: 5vw;
        font-size: 8vw;
    }

    .menu {
        position: fixed;
        z-index: 1000;
        width: 100%;
    }

    .carousel-container {
        margin-top: 15.5vw;
    }

    .carousel-inner img {
        height: 30vw;
    }

    .logo {
        height: 10vw;
    }

    .about h1,
    .services h1,
    .clients h1,
    .contact h1 {
        font-size: 5vw;
    }

    .right-box {
        font-size: medium;
    }

    .location-container {
        margin: 0;
    }

    .email-text,
    .phone-text,
    .hours-text {
        padding-left: 3vw;
    }
}



@media (max-width: 480px) {

    .about,
    .services,
    .clients,
    .contact {
        padding: 1vw 3vw;
    }

    .carousel-inner img {
        height: 32vw;
        max-height: 100vw;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        scale: 0.35;
    }

    .carousel-indicators {
        scale: 0.5;
    }

    .about h1 {
        margin-top: 2.6vw;
    }

    .about p {
        font-size: 3.5vw;
    }

    .about img {
        width: 90%;
    }

    .service-item,
    .client-logo {
        width: 48%;
        font-size: xx-small;
    }


    .client-logo img {
        height: 18vw;
    }

    .service-item h3 {
        font-size: 3.8vw;
    }

    .client-logo h3 {
        font-size: 2.8vw;
    }

    .service-item p {
        height: 34%;
    }

    .iframe {
        height: 20vw;
    }

    .footer-container-top {
        margin-top: 2vw;
    }
    .footer-contact {
        font-size: large;
        width: 70vw;
        display: flexbox;
        justify-content: center;
        margin: 0;
    }

    .footer-container-bottom .social-icons i {
        font-size: 8vw;
        margin-bottom: 3vw;
    }

    .footer-container-bottom {
        margin: 0;
        justify-content: center;
    }
}