@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
--sarmi-red: #BA2C2F;
--botão-wpp: #2CBA52;
--botão-wpp-hover: #2CBA52c1;
}

.red {
    color: #fb2e32;
}

a {
    text-decoration: none;
    color: inherit;
}

/* LINKS */
/* LINKS */
/* LINKS */

.header-category {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 2px solid var(--sarmi-red);
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    z-index: 10000;
}

.header-hamburger {
    display: none;
}

.burger-icon-open {
    display: none;
}

.header-category img{
    cursor: pointer;
    height: 120px;
}

.category-link {
    font-size: 1rem;
    font-weight: 500;
    color: black;
    text-transform: uppercase;
}

.category-link:hover {
    color: var(--sarmi-red);
}

@media (max-width: 1440px){
    .header-category {
        gap: 50px;
        padding: 0;
    }
}

@media (max-width: 1200px){
    .header-category {
        gap: 40px;
    }

    .category-link {
        font-size: 1.1rem;
    }
}

@media (max-width: 1060px){
    .header-category {
        gap: 20px;
    }

    .category-link {
        font-size: 1rem;
    }
}

@media (max-width: 800px){
    .header-category {
        display: none;
    }

    .burger-icon-open {
        display: flex;
        position: fixed;
        top: 15px;
        left: 25px;
        z-index: 200;
        background-color: white;
        border-radius: 50%;
        padding: 10px;
    }

    .close-burger {
        border: none;
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: inherit;
    }

    .close-burger svg{
        width: 25px;
        height: 25px;
    }

    .header-hamburger{
        position: fixed;     
        display: flex;
        flex-direction: column;
        gap: 20px;
        top: 0;
        left: 0;
        width: 80%;
        padding-left: 20px;
        padding-top: 20px;
        max-width: 180px;
        height: 100%;
        box-shadow: 10px 10px 20px black;
        background: #fff;
        transform: translateX(-100%);
        transition: transform .35s ease, opacity .35s ease;
        opacity: 0;
        pointer-events: none;
        z-index: 2000;
    }

    .header-hamburger.active{
        transform:translateX(0);
        opacity:1;
        pointer-events:auto;
    }

    .burger-icon-open,
    .close-burger{
        transition:opacity .3s ease;
    }

    .burger-icon-open.hidden,
    .close-burger.hidden{
        opacity:0;
        pointer-events:none;
    }

    .header-hamburger .nav-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .header-hamburger img{
        width: 60%;
    }

}

/* HERO */
/* HERO */
/* HERO */

.hero-background {
    width: 100%;
    position: relative;
    background-image: url('img/Faxada.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100% 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maxwidth {
    max-width: 1500px;
    margin: auto;
}

.hero-background::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 55%, transparent 100%);
    pointer-events: none;
    z-index:0;
}

.hero-info {
    width: 45%;
    height: 800px;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 100px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.title {
    font-size: 3rem;
    letter-spacing: 2px;
    color: white;
    font-weight: 800;
    text-align: center;
}

.description {
    font-size: 1.5rem;
    letter-spacing: 2px;
    line-height: 35px;
    color: white;
    font-weight: 300;
    text-align: center;
}

.hero-button {
    background: var(--botão-wpp);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 15px;
    width: 100%;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px var(--botão-wpp);
    cursor: pointer;
    text-align: center;
    margin-top: 25px;
    letter-spacing: 0.5px;
    display: block;
    transition: all 1s ease;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.whatsapp-img {
    width: 32px;
    height: 32px;
    filter: invert(1);
    pointer-events: none;
}

.hero-button:hover {
    background-color: var(--botão-wpp-hover);
}

.placeholder {
    width: 40%;
}


@media (max-width:1560px){
    .maxwidth {
        max-width: 95%;
    }
    .hero-info {
        width: 50%;
    }
    .placeholder {
        width: 50%;
    }
    .hero-background {
        background-size: cover;
        background-position: 300px 0px;
    }
}

@media (max-width:1100px){
    .hero-info {
        width: 70%;
    }
    .placeholder {
        width: 30%;
    }
    .hero-background {
        background-position: 0 0;
    }
    .hero-background::before{
        background: linear-gradient(to right, rgb(0, 0, 0, 0.5) 100%, transparent 100%);
    }
}

@media (max-width:780px){
    .hero-info {
        width: 80%;
    }
    .placeholder {
        width: 30%;
    }
    .title {
        font-size: 2.3rem;
    }
    .description {
        font-size: 1.2rem;
    }
    .hero-background {
        background-position: 0;
    }
        @media (max-width: 768px ) {
        .hero-background {
            background-image: url('img/FaxadaMobile.webp');
    }
}
}

@media (max-width:600px){
    .hero-info {
        height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .title {
        font-size: 1.5rem;
    }
    .description {
        font-size: 1rem;
    }
}

@media (max-width:430px){
    .maxwidth {
        max-width: 95%;
    }
    .title {
        font-size: 1.6rem;
        letter-spacing: 1px;
        color: white;
        font-weight: 800;
    }
    .description {
        font-size: .8rem;
        letter-spacing: 1px;
        line-height: 25px;
        color: white;
        font-weight: 400;
    }
    .hero-button {
        font-size: .8rem;
        gap: 10px;
    }

    .hero-info {
        width: 100%;
    }
}

/* TIPOS DE VEÍCULOS */
/* TIPOS DE VEÍCULOS */
/* TIPOS DE VEÍCULOS */

.vehicle-type-background {
    background: linear-gradient(#BA2C2F, #6C0608);
    padding: 50px 0;
}

.vehicle-type-background .title,
.vehicle-type-background .description {
    margin-bottom: 50px;
}

.vehicle-block-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    overflow: hidden;
}

.vehicle-block-car {
    width: 33%;
    min-width: 380px;
    height: 200px;
    background-image: url('/img/Carro-ativo.png');
    border-radius: 5px;
    background-size: cover;
    background-position: right;
    padding: 30px 0 50px 40px;
}

.vehicle-block-van {
    width: 33%;
    min-width: 380px;
    height: 200px;
    background-image: url('/img/Van.png');
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    padding: 30px 0 50px 40px;
}

.vehicle-block-truck {
    width: 33%;
    min-width: 380px;
    height: 200px;
    background-image: url('/img/Caminhao.png');
    border-radius: 5px;
    background-size: cover;
    background-position: right;
    padding: 30px 0 50px 40px;
}

.vehicle-block-title-car {
    color: white;
    font-size: 2rem;
}
.vehicle-block-title-van {
    color: black;
    font-size: 2rem;
}
.vehicle-block-title-truck {
    color: black;
    font-size: 2rem;
}

@keyframes bounce {
0%   { transform: translateY(0);}
50%  { transform: translateY(-10px);}
100% { transform: translateY(0);}
}

.vehicle-bounce {
animation: bounce 0.6s cubic-bezier(.57,1.5,.56,1) 1;
}

.vehicle-block-button {
    background: var(--botão-wpp);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 15px;
    width: 70%;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px var(--botão-wpp);
    cursor: pointer;
    text-align: center;
    margin-top: 25px;
    letter-spacing: 0.5px;
    display: block;
    transition: all 1s ease;
}   

.vehicle-block-button a{
    pointer-events: auto;
}

.vehicle-block-button:hover {
    background-color: #16d048;
}

.vehicle-block-car-active, 
.vehicle-block-van-active, 
.vehicle-block-truck-active {
    display: block;
}

.vehicle-block-car-active-flex, 
.vehicle-block-van-active-flex,
.vehicle-block-truck-active-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    padding: 30px 0;
}

.vehicle-category-car,
.vehicle-category-van,
.vehicle-category-truck {
    padding: 20px;
    background-color:white;
    border: none;
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all .2s ease;
    border-radius: 5px;
}

.vehicle-category-car:hover,
.vehicle-category-van:hover,
.vehicle-category-truck:hover {
    background-color:var(--sarmi-red);
    color: white;
    cursor: pointer;
}

.vehicle-category-car.active,
.vehicle-category-van.active,
.vehicle-category-truck.active {
    background-color:var(--sarmi-red);
    color: white;
}


.vehicle-block-car-active-products,
.vehicle-block-van-active-products,
.vehicle-block-truck-active-products {
    display: none;
    justify-content: start;
    flex-wrap: wrap;
    gap: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 50px;
}

.vehicle-block-car-active-products-block,
.vehicle-block-van-active-products-block,
.vehicle-block-truck-active-products-block {
    width: 30%;
    min-width: 330px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vehicle-block-car-active-products-block img,
.vehicle-block-van-active-products-block img,
.vehicle-block-truck-active-products-block img{
    width: 200px;
    height: 150px;
    background-color: white;
}
.vehicle-block-car-active-products-block h3,
.vehicle-block-van-active-products-block h3,
.vehicle-block-truck-active-products-block h3{
    color: white;
}
.vehicle-block-car-active-products-block button,
.vehicle-block-van-active-products-block button,
.vehicle-block-truck-active-products-block button{
    background: var(--botão-wpp);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 15px;
    width: 100%;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px var(--botão-wpp);
    cursor: pointer;
    text-align: center;
    margin-top: 25px;
    letter-spacing: 0.5px;
    display: block;
    transition: all 1s ease;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

button .whatsapp-img {
    width: 32px;
    height: 32px;
    filter: invert(1);
    background-color: transparent;
    pointer-events: none;
}

@media (max-width: 1500px) {
    .vehicle-block-car-active-products-block h3 {
        font-size: 1rem;
    }
    .vehicle-block-car-active-products-block button {
        font-size: .8rem;
    }
}

@media (max-width: 1400px) {
    .vehicle-block-flex {
        gap: 20px
    }
    
    .vehicle-block-car,
    .vehicle-block-van,
    .vehicle-block-truck {
        min-width: 300px;
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    .vehicle-block-flex {
        justify-content: start;
    }
    
    .vehicle-block-car, 
    .vehicle-block-van, 
    .vehicle-block-truck {
        min-width: 250px;
    }

    .vehicle-block-title-car,
    .vehicle-block-title-van,
    .vehicle-block-title-truck {
        font-size: 1.5rem;
    }

    .vehicle-block-button {
        font-size: .8rem;
    }
    .vehicle-block-car-active-products,
    .vehicle-block-van-active-products,
    .vehicle-block-truck-active-products {
        justify-content: center;
    }
}

@media (max-width: 850px) {
    .vehicle-block-car,
    .vehicle-block-van,
    .vehicle-block-truck {
        min-width: 100%;
        padding: 50px;
    }

    .vehicle-block-button {
        width: 50%;
    }

    .vehicle-block-button a{
        pointer-events: auto;
    }

    .vehicle-block-flex {
        flex-direction: column;
        align-items: start;
    }
}

    @media (max-width: 768px ) {
        .vehicle-block-car-active-products-block, .vehicle-block-van-active-products-block, .vehicle-block-truck-active-products-block {
            min-width: unset;
            width: 45%;
        }

        .vehicle-block-car-active-products-block, 
        .vehicle-block-van-active-products-block, 
        .vehicle-block-truck-active-products-block {
            flex-direction: column;
            margin: auto;
        }
    }

    @media (max-width: 500px) {

        .vehicle-block-car-active-products-block div, 
        .vehicle-block-van-active-products-block div, 
        .vehicle-block-truck-active-products-block div{
            width: 200px;
            margin: auto;
        }
        .vehicle-block-car-active-products, 
        .vehicle-block-van-active-products, 
        .vehicle-block-truck-active-products {
            padding: 50px 0;
        }

        .vehicle-block-car-active-products-block a, 
        .vehicle-block-van-active-products-block a, 
        .vehicle-block-truck-active-products-block a{
            padding: 0 20px;
        }

        .vehicle-block-car,
        .vehicle-block-van,
        .vehicle-block-truck {
            padding: 30px;
        }
        .vehicle-block-title-car,
        .vehicle-block-title-van,
        .vehicle-block-title-truck {
            font-size: 1.5rem;
        }

        .vehicle-block-button {
            font-size: 1rem;
            width: 80%;
        }

        .vehicle-block-car-active-products-block button {
            font-size: .8rem;
            margin: 15px 0 50px 0;
            flex-direction: column;
            gap: 10px;
        }

        .vehicle-block-car-active-products, .vehicle-block-van-active-products, .vehicle-block-truck-active-products {
            gap: 0;
        }

        .vehicle-block-car-active-products-block img, .vehicle-block-van-active-products-block img, .vehicle-block-truck-active-products-block img {
            width: 100%;
        }

        .vehicle-block-car-active-products-block div, .vehicle-block-van-active-products-block div, .vehicle-block-truck-active-products-block div {
            width: 100%;
        }
        
        .vehicle-block-car-active-products-block h3 {
            min-height: 35px;
            text-align: center;
        }
}

@media (max-width: 425px) {
    .vehicle-block-flex{
        gap: 10px;
    }
    .vehicle-type-background .title,
    .vehicle-type-background .description {
        margin-right: 2rem;
        margin-left: 2rem;
        margin-bottom: 20px;
    }
    .vehicle-block-car-active-flex, 
    .vehicle-block-van-active-flex,
    .vehicle-block-truck-active-flex {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        margin-right: 0;
    }

    .vehicle-category-car, 
    .vehicle-category-van, 
    .vehicle-category-truck {
        font-size: .8rem;
    }

    .vehicle-block-car-active-products, 
    .vehicle-block-van-active-products, 
    .vehicle-block-truck-active-products {
        margin: 0;
    }
    
    .vehicle-block-car,
    .vehicle-block-van,
    .vehicle-block-truck {
        padding: 30px;
    }

    .vehicle-block-title-car,
    .vehicle-block-title-van,
    .vehicle-block-title-truck {
        font-size: 1.8rem;
    }

    .vehicle-block-car-active-products-block button {
        font-size: .8rem;
        margin-bottom: 50px;
    }
}


/* ABOUT-US */
/* ABOUT-US */
/* ABOUT-US */

.about-us-background {
    background: linear-gradient(to left,#E89999, white);
    padding: 50px 0;
}

.about-us-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-us-text {
    width: 50%;
}

.about-us-text .title,
.about-us-text .description {
    margin-bottom: 50px;
    text-align: start;
}

.about-us-text h3, 
.about-us-text p {
    color: #404040;
}

.about-us-video {
    width: 40%;
    position: relative; 
}

.about-us-video iframe{
    border-radius: 20px; 
}

@media (max-width: 1025px) {
    .about-us-text {
            width: 100%;
    }

    .about-us-text .title, 
    .about-us-text .description {
        text-align: center;
    }

    .about-us-video {
            width: 95%;
            margin: auto;
    }

    .about-us-video iframe{
        width: 100%;
        height: 500px;
    }

    .about-us-flex {
        align-items: start;
        flex-direction: column;
    }

}

@media (max-width: 425px) {
    .about-us-flex {
        align-items: start;
        flex-direction: column;
    }

    .about-us-text .title,
    .about-us-text .description {
        margin: 0 20px 20px 20px; 
    }

    .about-us-video iframe{
        height: 200px;
    }
}

/* LOJAS */
/* LOJAS */
/* LOJAS */

.places-background {
    padding: 50px 0;
    background: linear-gradient(to bottom,var(--sarmi-red),#5B0B0D);
}

.places-background .title,
.places-background .description {
    margin-bottom: 50px;
}

.places-carousel-container {
    margin: auto;
    overflow: hidden;
    width: 100%;
}

.places-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
}

.places-carousel::-webkit-scrollbar{
    display: none;
}

.carousel-item {
    min-width: 240px;
    height: 140px;
    background: #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.places-placeholder {
    max-width: 500px;
    flex: 0 0 400px;
}

.places-blocks-container {
    max-width: 500px;
    flex: 0 0 400px;
}

.places-carousel-wrapper{
    position:relative
}

.places-arrow{
    position: absolute; 
    top: 50%; 
    translate: 0 -50%;
    width: 60px; 
    height: 60px; 
    border: none; 
    border-radius: 10px;
    background: var(--sarmi-red);
    font-size: 28px; 
    line-height: 1; 
    cursor: pointer; 
    z-index: 5;
}

.places-arrow.left{
    left:14px;
}

.places-arrow.right{
    right:14px;
}

.places-arrow.left svg,
.places-arrow.right svg{
    margin-top: .3rem;
    height: 30px;
}

.places-arrow:hover{
    opacity: 80%;
}

.places-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 38px;
    border: 1px solid white;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 100%;
    color: white;
}

.title-place-name {
    text-align: center;
    padding-top: 30px;
    font-size: 1.8rem;
    font-weight: 700;
}

.svg p{
    width: 80%;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.svg a{
    display: flex;
    align-items: center;
    gap: 15px;
}

.svg svg {
    width: 50px;
    height: 50px;
}

.google-maps {
    align-self: center;
}

.places-button {
    background: var(--botão-wpp);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 15px;
    width: 100%;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px var(--botão-wpp);
    cursor: pointer;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    display: block;
    transition: all 1s ease;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    @media (max-width: 580px) {
    .places-placeholder {
        display: none;
    }
}

@media (max-width: 580px) {
    .places-blocks-container {
        max-width: 300px;
    }

    .santa-rosa {
        margin-right: 200px;
    }

    .places-card {
        gap: 20px;
        padding: 0 20px;
    }

    .svg svg{
        width: 30px;
        height: 30px;
    }

    .svg p{
        font-size: .8rem;
    }

    .places-card iframe {
        width: 100%;
    }

    .places-button {
        font-size: .9rem;
    }
}

@media (max-width: 425px) {
    .places-background .title,
    .places-background .description {
        margin: 0 20px 20px 20px;
    }

    .places-background .title,
    .places-background .description {
        margin-bottom: 20px;
    }

    .title-place-name {
        font-size: 1.5rem;
    }

    p.santa-rosa-title {
        margin-right: 0;
    }
}

/* FEEDBACK */
/* FEEDBACK */
/* FEEDBACK */

.feedback-background {
    padding: 50px 0;
    background: linear-gradient(to left,#E89999, white);;
}

.feedback-background .title,
.feedback-background .description {
    margin-bottom: 50px;
}

.feedback-background .title,
.feedback-background .description {
    color: #404040;
}

.feedback-carousel-container{
    position: relative;
    padding: 0;
    overflow: hidden;
}

.feedback-carousel{
    display: flex; 
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: auto !important;
    scroll-behavior: auto !important;
    overscroll-behavior-x: contain;
}

.feedback-carousel::-webkit-scrollbar{
    display: none
}

.feedback-card{
    flex: 0 0 400px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    color: white;
    padding: 50px 24px 50px;
}

.feedback-card h4{
    margin: 12px 0 8px;
    font-weight: 600; 
    font-size: 1.2rem;
}

.feedback-card p{
    margin: 0; 
    font-size: 1rem; 
    line-height: 1.4; 
    color: white;
}

.avatar{
    width: 64px; 
    height: 64px;
    border-radius: 50%;
    background: white;
    display: flex; 
    align-items: center; 
    justify-content: center;
    overflow: hidden;
}

.avatar svg{width:36px;height:36px}
    .stars{display:flex;margin-bottom:12px}
    .stars svg{
    width:18px;height:18px;
    fill:#f8b200; margin-right:4px;
}

.stars svg:last-child{
    margin-right:0
}

@media (max-width: 425px) {
    .feedback-card {
        flex: 0 0 300px;
    }

    .feedback-background .title,
    .feedback-background .description {
        margin: 0 20px 20px 20px;
    }

    .feedback-background .description {
        font-weight: 300;
    }
}

/* === */

.FAQ-background {
    padding: 50px 0;
    background: linear-gradient(to bottom,#BA2C2F, #C25C5E);
}

.FAQ-background .title,
.FAQ-background .description {
        margin-bottom: 50px;
}

.faq-item{
    border-bottom: 3px solid transparent;
}

.faq-question{
    width:100%;
    padding:16px 56px 16px 24px;
    background:black;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 5px 5px 0 0;
}

.faq-question .arrow{
    position: absolute;
    right: 24px; 
    top: 50%; 
    translate: 0 -50%;
    width: 14px; 
    height: 14px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    transition: transform .25s;
}

.faq-answer{
    background:#404040;
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    border-radius: 0 0 5px 5px;
}

.faq-item.open .faq-answer{
    padding: 20px 24px 24px;
    max-height: 700px;
}

.faq-item.open .arrow{
    transform: rotate(-135deg);
}

@media (max-width: 1500px) {
    .faq-question,
    .faq-answer {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: .8rem;
        line-height: 25px;
    }
    .FAQ-background .title,
    .FAQ-background .description {
        margin-bottom: 20px;
    }
}

/* FOOTER */
/* FOOTER */
/* FOOTER */

.footer-background {
    background-color: white;
    background-image: url('./img/Loja.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    position: relative;
}

.footer-background:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgb(255, 255, 255) 60%, transparent);
    width: 100%;
    height: 100%;
}

.footer-text .title {
    color: #404040;
    margin-bottom: 50px;
    text-align: start;
}

.footer-text .description {
    color: #404040;
    margin-bottom: 30px;
    text-align: start;
}


.footer-description{
    margin-bottom: 30px !important;
    margin-top: 30px !important;
}

.footer-flex {
    display: flex;
    justify-content: start;
}

.footer-text {
    z-index: 100;
    width: 70%;
    padding: 50px 0;
}

.footer-button {
    background: var(--botão-wpp);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px ;
    width: 100%;
    max-width: 500px;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px var(--botão-wpp);
    cursor: pointer;
    text-align: center;
    margin-top: 25px;
    letter-spacing: 0.5px;
    display: block;
    transition: all 1s ease;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-socials-div p{
    font-size: 1.5rem;
    letter-spacing: 2px;
    line-height: 35px;
    color: #292929;
    font-weight: 300;
    margin-top: 50px;
}

.footer-socials-div svg {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    margin-top: 30px;
}

.footer-socials-div svg .youtube {
    width: 120px;
    height: 120px;
} 

.footer-placeholder{
    width: 50%;
}


@media (max-width:1500px){
    .footer-background {
        max-width: 100%;
    }
    .footer-background {
        background-size: cover;
        margin-left: 3%;
    }
}

@media (max-width: 1400px){
    .footer-background:before {
        background: linear-gradient(to right, rgb(255, 255, 255) 40%, transparent);
    }
    .footer-background {
        background-position: 350px 0;
    }
}

@media (max-width: 1100px){
    .footer-background {
        background-size: cover;
    }
    .footer-background {
        background-position: 250px 0;
    }
}

@media (max-width: 900px){
    .footer-socials-div .description {
        margin-bottom: 0;
    }

    .footer-socials-div svg {
        margin-bottom: 120px;
    }
    .footer-background {
        background-position: 0;
    }
}

@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
        padding-bottom: 100px;
    }

    .footer-text {
        width: 80%;
    }

    .footer-button {
        font-size: 1rem;
        gap: 10px;
    }
    .footer-text .title, 
    .footer-text .description {
        margin-bottom: 20px;
    }

    .footer-socials-div .description {
        font-size: 1.2rem;
    }
}

@media (max-width: 425px) {
    .footer-background:before {
        background: linear-gradient(to right, rgb(255, 255, 255) 100%, transparent);
    }

    .footer-background {
        background-size: cover;
        margin-left: 4%;
    }
    .footer-text {
        width: 95%;
    }

    .footer-text .title, 
    .footer-text .description,
    .footer-socials-div {
        text-align: center;
    }

    .footer-socials-div .description,
    .footer-text .description {
        font-size: 1rem;
        font-weight: 400;
    }

    .footer-socials-div svg {
        margin-bottom: 0px;
    }
}

/* BOTÕES */
/* BOTÕES */
/* BOTÕES */

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:80px;
    height:80px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 10px #25d36596;
    z-index:1000;
}

.whatsapp-float img{
    width:42px;
    height:42px;
    filter:invert(1);
    pointer-events:none;
}

@keyframes buzz {
    0%,85%  { transform:translate(0); }
    88%,94% { transform:translate(-2px,0); }
    91%,97% { transform:translate( 2px,0); }
    100%    { transform:translate(0); }
}

.whatsapp-float{
    animation:buzz 3s infinite;
    cursor:pointer;
}

.scroll-top{
    position:fixed;
    bottom:20px;
    left:20px;
    width:80px;
    height:80px;
    background:rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1000;
    color: white;
    transition:transform .25s;
    cursor:pointer;
    opacity: 0;
    pointer-events:none;
    transition:opacity .3s, transform .25s;
}

.scroll-top:hover{ 
    transform:scale(1.05); 
}

@media (max-width: 425px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
    }
    .whatsapp-float img {
        width: 32px;
        height: 32px;
        filter: invert(1);
        pointer-events: none;
    }
    .scroll-top {
        width: 60px;
        height: 60px;
    } 
}