@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #333;
    --text-color: #fdfdfd;
    --main-color: #f03b3b;
    --white-color: #fdfdfd;
    --shadow-color: rgba(0, 0, 0, .2);
}

*::selection {
    background: var(--main-color);
    color: var(--bg-color);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    position: relative; 
    background-image: url('/images/background.png'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    color: var(--text-color); 
    overflow: hidden;
}

body::before {
    content: ''; 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1; 
}

@media (max-width: 768px) {
    body {
        background-image: url('/images/background-mobile.png');
    }
    
    body::before {
        content: ''; 
        position: absolute; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.168);
        z-index: 1; 
    }
}

body > * {
    position: relative; 
    z-index: 2;
}

.logo {
    font-size: 2.5rem;
    color: var(--main-color);
    font-weight: 600;
    margin-right: auto;
}

section {
    min-height: 100vh;
    padding: 10rem 7% 2rem;
}

.home {
    display: flex;
    align-items: center;
    justify-content: center; 
    min-height: 50vh; 
    text-align: center; 
}

.home .home-content {
    max-width: 130rem;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.home-content a.btn-phone {
    display: block;
    margin-top: 1rem; 
    text-align: center;
}

.home-content a.btn-whatsapp {
    display: block;
    margin-top: 1rem; 
    text-align: center;
}

.home-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: .3;
    margin-bottom: 5rem;
}

.highlight {
    font-size: 4rem;
    font-weight: 800;
    color: #f03b3b;
}

.home-content h2 {
    font-size: 5rem;
    text-align: center;
    font-weight: 800;
    margin-bottom: 50px;
}

.home-content h3 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
}

.address-link {
    text-decoration: none;
    color: inherit; 
    transition: color 0.3s ease, transform 0.3s ease; 
    margin-top: 20px;
}

.address-link:hover {
    color: #fff; 
    transform: scale(1.02); 
    text-shadow: 0 0 1px #fff, 0 0 2px #fff;
}

.address-link h3 {
    margin: 0;
}

.home-content p {
    font-size: 1.5rem;
    border: 1px solid #f03b3b; 
    border-radius: 50px;
    padding: 10px;
    display: inline-block;
    margin-bottom: 50px;
    color: var(--text-color); 
    position: relative; 
    box-shadow: 0 0 10px rgba(240, 59, 59, 0.8), 0 0 20px rgba(240, 59, 59, 0.6);
    transition: transform 0.3s, box-shadow 0.3s; 
}

.home-content p:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(240, 59, 59, 0.9), 0 0 30px rgba(240, 59, 59, 0.7); 
}


.home-content .info {
    font-weight: bold;
    margin-bottom: 20px;
}

.map-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1px; 
    margin-bottom: -3px;
}

.adress .social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 2rem;
    color: var(--main-color);
    margin: 2.5rem 1.5rem 3rem 0;
    transition: .5s ease;
}

.adress .social-media a:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.marques-web {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.marques-web:hover {
    color: #333; 
}

.phone-icon {
    font-size: 2.5rem; 
    transform: translateY(3px); 
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    background: #1335cd;
    border-radius: 5rem;
    box-shadow: 0 .2rem .5rem var(--shadow-color); 
    font-size: 1.5rem;
    color: var(--white-color);
    letter-spacing: .1rem;
    font-weight: 600;
    border: .2rem solid transparent;
    transition: transform 0.3s ease, background 0.5s ease, box-shadow 0.5s ease;
    margin-bottom: 1rem;
}

.btn-phone:hover {
    background: #0e3aff;
    box-shadow: 0 .2rem .5rem var(--shadow-color), 0 0 15px rgba(19, 53, 205, 0.8); 
    transform: scale(1.03);
}


.btn-phone i {
    margin-top: -10px; 
    margin-right: 10px; 
}

.whatsapp-icon {
    font-size: 2.5rem; 
    transform: translateY(3px); 
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    background: #1aa62f;
    border-radius: 5rem;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 1.5rem;
    color: var(--white-color);
    letter-spacing: .1rem;
    font-weight: 600;
    border: .2rem solid transparent;
    transition: transform 0.3s ease, background 0.5s ease, box-shadow 0.5s ease;
    margin-bottom: 1rem;
}

.btn-whatsapp:hover {
    background: #1cba2d; 
    box-shadow: 0 .2rem .5rem var(--shadow-color), 0 0 15px rgba(26, 166, 47, 0.6); 
    transform: scale(1.03);
}


.btn-whatsapp i {
    margin-top: -10px; 
    margin-right: 10px; 
}

.services-box img {
    width: 50px;
    height: 50px; 
}

.home-img img {
    position: absolute;
    bottom: 0;
    right: 0px;
    pointer-events: none;
    max-width: 510px;
    max-height: 100vh;
}

span {
    color: var(--main-color);
}

.adress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    flex-direction: column;
}

.heading {
    font-size: 4rem;
    text-align: center;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    text-align: center;
    margin-top: 0;
}

.contact-content h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.heading {
    font-size: 4rem;
    text-align: center;
}

.contact-content h3 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-content p {
    font-size: 1.5rem;
    border: 1px solid #f03b3b; 
    border-radius: 50px;
    padding: 10px;
    display: inline-block;
    margin-bottom: 50px;
    color: var(--text-color); 
    position: relative; 
    box-shadow: 0 0 10px rgba(240, 59, 59, 0.8), 0 0 20px rgba(240, 59, 59, 0.6);
    transition: transform 0.3s, box-shadow 0.3s; 
}

.contact-content p:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(240, 59, 59, 0.9), 0 0 30px rgba(240, 59, 59, 0.7); 
}

.portfolio {
    min-height: auto;
    padding-bottom: 10rem;
    margin-top: .1rem;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center; 
}

.portfolio h2 {
    margin-bottom: 4rem;
}

.portfolio p.services {
    margin-top: 2rem;
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-color); 
}

.portfolio p.services span {
    position: relative;
    display: inline-block;
    padding-left: 2rem; 
    margin-right: 1rem; 
    color: var(--text-color); 
}

.portfolio p.services span::before {
    content: '•'; 
    color: #f03b3b; 
    position: absolute;
    left: 0; 
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem; 
}

.portfolio p.services-info {
    background: #f03b3b;
    font-size: 2rem;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 20px;
    color: var(--text-color); 
    position: relative; 
}

.portfolio .portfolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2.5rem;
}

.portfolio-container .portfolio-box {
    position: relative;
    display: flex;
    border-radius: 2rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    overflow: hidden;
}

.portfolio-box img {
    width: 100%;
    transition: .5s ease;
}

.portfolio-box:hover img {
    transform: scale(1.1);
}

.portfolio-box .portfolio-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .1), var(--main-color));
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    opacity: 0;
    transition: .5s ease;
}

.portfolio-box:hover .portfolio-layer {
    opacity: 1;
}

.portfolio-layer h4 {
    font-size: 3rem;
}

.portfolio-layer p {
    font-size: 1.6rem;
    margin: .3rem 0 1rem;
}

.portfolio-layer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: var(--white-color);
    border-radius: 50%;
}

.portfolio-layer a i {
    font-size: 2rem;
    color: #333;
}

.brands {
    background-color: var(--main-color);
    text-align: center;
    padding: 5rem 0; 
    min-height: 250px; 
}

.brands-container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 1rem; 
}

.brands-container h2{
    color: var(--text-color);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 15rem;
    margin-top: 3rem;
}

.brand-logos img {
    width: 200px;
    height: auto;
}

.testimonial-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 1rem 1rem;
    margin-bottom: -25rem;
}

.testimonial-container .testimonial-wrapper {
    position: relative;
    max-width: 90rem;
    width: 100%;
    padding: 5rem;
}

.testimonial-wrapper .testimonial-box {
    padding: 1rem;
    border-radius: 2rem;
    overflow: hidden;
}

.testimonial-content .testimonial-slide {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: var(--text-color);
    border-radius: 2rem;
    box-shadow: 0 .1rem .5rem var(--shadow-color);
    padding: 3rem 5rem;
    border-top: .8rem solid var(--main-color);
    border-bottom: .8rem solid var(--main-color);
}

.testimonial-slide img {
    width: 14rem;
    height: 14rem;
    object-fit: cover;
    border-radius: 50%;
    border: .5rem solid var(--white-color);
    outline: .5rem solid var(--main-color);
}

.testimonial-slide h3 {
    font-size: 2.5rem;
    margin: 2rem 0;
    color: var(--bg-color);
}

.testimonial-slide p {
    font-size: 1.4rem;
    text-align: center;
    color: var(--bg-color);
}

.testimonial-box .swiper-button-next,
.testimonial-box .swiper-button-prev {
    color: var(--main-color);
}

.testimonial-box .swiper-button-next {
    right: 0;
}

.testimonial-box .swiper-button-prev {
    left: 0;
}

.testimonial-box .swiper-pagination-bullet {
    background: rgb(255, 255, 255);
}

.testimonial-box .swiper-pagination-bullet-active {
    background: var(--main-color);
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 7%;
    background: var(--main-color);
}

.footer-text p {
    font-size: 1.6rem;
    color: var(--white-color);
}

.footer-iconTop {
    position: absolute;
    right: 2rem;
    bottom: 2rem; 
}

.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--white-color);
    border-radius: .8rem;
    border: .2rem solid var(--main-color);
    outline: .2rem solid transparent;
    transition: .5s ease;
}

.footer-iconTop a:hover {
    outline-color: var(--white-color);
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: #333;
}


/* BREAKPOINTS */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }

    .home-img img {
        right: 0;
    }
}

@media (max-width: 1100px) {

}

@media (max-width: 1024px) {
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

}

@media (max-width: 991px) {

    .home .home-content {
        max-width: 50rem;
    }

    .footer {
        padding: 2rem 3%;
    }
}

@media (max-width: 896px) {


}

@media (max-width: 879px) {
    .portfolio .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 780px) {

}

@media (max-width: 768px) {

    .home {
        padding: 0 3% 23rem;
        justify-content: center;
        text-align: center;
    }

    .home .home-content {
        margin-top: 60px;
    }

    .home-content h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .highlight {
        font-size: 2.5rem;
    }

    .home-content h2 {
        font-size: 3.5rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .home-content h3 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .home-content P {
        font-size: 1.4rem;
        text-align: center;
        padding: 7px 15px;
        border: 1px solid #f03b3b;
        margin-bottom: 30px;
    }

    .address-link {
       margin-bottom: -260px;
    }

    .home-content .btn-phone {
        margin-top: -5px;
    }

    .home-content .btn-whatsapp {
        margin-top: -5px;
    }

    .testimonial-container {
        margin-bottom: 30px;
    }

    .contact {
        flex-direction: column-reverse;
        text-align: center;
        margin-top: -220px;
        margin-bottom: -70px;
    }

    .contact-content h2 {
        text-align: center;
    }

    .contact-content h3 {
        text-align: center;
        font-size: 3rem;
        font-weight: 800;
    }

    .contact-content P {
        font-size: 1.4rem;
        text-align: center;
        padding: 7px 15px;
        border: 1px solid #f03b3b;
        margin-bottom: 30px;
    }

    .testimonial-container .testimonial-wrapper {
        padding: 5rem 0;
    }

    .testimonial-content .testimonial-slide {
        padding: 3rem 2rem;
    }

    .testimonial-box .swiper-button-next,
    .testimonial-box .swiper-button-prev {
        display: none;
    }
    
    .brands-container h2{
        color: var(--text-color);
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .brand-logos {
        display: flex;
        justify-content: center;
        gap: 5rem;
        margin-top: 3rem;
    }
    
    .brand-logos img {
        width: 150px;
        height: auto;
    }

}

@media (max-width: 580px) {
    .portfolio .portfolio-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    #darkMode-icon {
        right: 6rem;
    }

    .footer {
        flex-direction: column-reverse;
    }

    .footer p {
        text-align: center;
        margin-top: 2rem;
    }

}

@media (max-width: 365px) {
 
}

@media (max-width: 315px) {
    .home-content h1 {
        font-size: 4.5rem;
    }

img {
    border-radius: 20px;
}
}

.top-header {
    width: 100%;
    background-color: #f03b3b00; /* Cor de fundo */
    padding: 10px 20px;
    display: flex;
    justify-content: right; 
    align-items: center;
}

.top-phone {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.top-phone:hover {
    text-decoration: none;
    color: white;
}





