/* =======================
   RESET GLOBAL
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #0b0b0b;
    color: #fff;
    line-height: 1.6;
}

/* =======================
   HEADER / LOGO
======================= */
.icon {
    position: absolute;
    width: 100%;
    z-index: 10;
    background: transparent;
    padding: 20px 0;
}

.class_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.class_img img {
    height: 7rem;
}

/* =======================
   CONTAINER PADRÃO
======================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.container h2 {
    text-transform: uppercase;
    font-size: 1rem;
}

.Lavamos {
    margin-top: 1.3rem;
}

/* =======================
   HERO
======================= */
.hero {
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    display: flex;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.925), rgba(0, 0, 0, 0.438)),
        url('assets/img/red\ car.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 5rem;
    margin-bottom: 1rem;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

.hero p {
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.3rem;
    font-family: "Poppins", sans-serif;
}

/* =======================
   TEXTOS ESPECÍFICOS
======================= */
.verdadeiro {
    font-size: 28px;
}

.qualidade {
    font-size: 19px;
}


/* =======================
   BOTÕES
======================= */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    font-size: 1.3rem;
    border: 2px solid #fff;
    transform: scale(1);
}

/* Linha decorativa */
.Lavamos {
    margin-top: 2rem;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
}

.Lavamos::after {
    content: "";
    display: block;
    width: 220px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 15px auto 0;
}

/* Botão primário */
.btn-primary {
    background: #262626;
    color: #ffffff;
}

.btn-primary:hover {
    background: #ffffff;
    color: black;
    transform: scale(1.1);
}

/* Botão secundário */
.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
    margin-top: 2rem;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

/* =======================
   SEÇÕES PADRÃO
======================= */
section {
    padding: 80px 0;
}

/* =======================
   SEÇÃO DOR
======================= */
.pain {
    background: #fff;
    color: #000;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.pain .container {
    max-width: 1400px;
    width: 95%;
    margin: auto;
}

.pain-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 300px;
}

.pain-text {
    flex: 1.2;
    text-align: left;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* textos da dor */
.amassado {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pain-list {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pain-good {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 300;
}

.pain-text h2 {
    font-size: 3.2rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.pain-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pain-image img {
    max-width: 100%;
    height: auto;
    margin-left: 79px;
    max-height: 600px;
    border-radius: 35px;
}


.fade-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.fade-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}





/* RESPONSIVO DOR */
@media (max-width: 768px) {
    .pain-grid {
        flex-direction: column;
        text-align: center;
    }

    .pain-image {
        margin-bottom: 30px;
    }
}

/* =======================
   SERVIÇOS
======================= */
.services {
    background-image: linear-gradient(rgba(0, 0, 0, 0.671), rgba(0, 0, 0, 0.438)),
        url('assets/img/fotos_andersomn.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services h2 {
    text-align: center;
    margin-bottom: 7rem;
    font-size: 4rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: #000000bd;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #fff;
}

.card h3{
    margin-bottom: 10px;
}

.card p {
    font-family: sans-serif;
    line-height: 25px;
    font-weight: 500;
}



.card img {
    width: 50px;
    color: #fff;
}

/* botão central serviços */
.btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin: 40px auto 0;
    background-color: #262626;
    z-index: 1;
}

/* =======================
   FILOSOFIA
======================= */
.philosophy {
    background: #f5f5f5;
    color: #000;
    padding: 100px 0;
}

.philosophy .container {
    max-width: 1500px;
    width: 90%;
}

.philosophy-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 230px;
    padding: 60px 20px;
}

.philosophy-image {
    flex: 1;
    max-width: 525px;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 50px;
    display: flex;
}

.philosophy-text {
    flex: 1;
    max-width: 600px;
}

.philosophy-text h2 {
    font-size: 3.2rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.philosophy-text p {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 2rem;
}

/* RESPONSIVO FILOSOFIA */
@media (max-width: 768px) {
    .philosophy-grid {
        flex-direction: column;
        text-align: center;
    }

    .philosophy-text {
        text-align: center;
    }
}

/* =======================
   REVIEWS
======================= */
.reviews {
    background-image: linear-gradient(rgba(0, 0, 0, 0.507), rgba(0, 0, 0, 0.466)),
        url('assets/img/capa_de_fundo_Gold_impact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.reviews h2 {
    font-size: 2.6rem;
}

.Veiculo {
    margin-top: 2rem;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;

}

.review p {
    margin-top: 1rem;
}

.review strong {
    font-size: 1.4rem;
}

.review {
    background: #000000;
    padding: 25px;
    border-radius: 10px;
}

.review img {
    margin-bottom: 2rem;
    width: 100%;
    height: auto;
    border-radius: 50px;
    border: 1px solid #000000;
    display: flex;
}



/* Container geral do carrossel */
.review-carousel {
    position: relative;
    width: 90%;
    max-width: 1250px;
    margin: 50px auto;
    overflow: hidden;
}

/* Track que segura todos os cards lado a lado */
.review-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.Avaliação-clientes {
    background-color: #f5f5f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: sans-serif;

}

.Gold p {
    color: #5a5a5a;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    font-family: sans-serif;
}

.Gold h4 {
    color: #000000;
    font-size: 4rem;
    line-height: 5rem;
    margin-bottom: 1rem;
    font-weight: 200;
    text-align: center;
    font-family: sans-serif;
}

#bold {
    font-weight: bold;
}






/* Cada card */
.review-card {
    flex: 0 0 400px;
    background: #ffffff;
    padding: 20px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(243, 238, 238, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 600px;
}


/* Foto do cliente circular */
.review-card img.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #686868;
    margin-bottom: 10px;
}

/* Foto do carro retangular */
.review-card img.car-img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-top: auto;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}


/* Nome e cidade */
.review-card h3 {
    margin: 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
}


.review-card .city {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}

/* Avaliação e estrelas */
.review-card .stars {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 10px;
}

.review-card .review {
    font-size: 0.95rem;
    color: black;
    background-color: white;
    line-height: 1.4;

}

/* Setas */
button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #000000;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s;
}



button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    background: #c4c4c4;
    border-radius: 50%;
    border: 1px solid #c4c4c4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    width: 16px;
    height: 16px;
    background: #383838;
    border: 1px solid #383838;
}


/* =======================
   CTA FINAL
======================= */
.final-cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.507), rgba(0, 0, 0, 0.466)),
        url('assets/img/capa_de_fundo_Gold_impact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, #000000, #ffffff, #000000);
}



/* =======================
   FOOTER
======================= */
.footer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.507), rgba(0, 0, 0, 0.466)),
        url('assets/img/capa_de_fundo_Gold_impact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    font-size: 0.9rem;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    max-width: 1500px;
    margin: auto;
    padding: 0 20px;
}


.footer h4 {
    font-size: 25px;
    margin-bottom: 1.1rem;
}

.footer p {
    font-size: 16px;
}

#cor {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

#cor:hover {
    transform: scale(2);


}


/* =======================
   CONTATO
======================= */
.contato {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.item {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.item h5 {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contato a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.contato a:hover {
    color: #f5c542;
}

.contato img {
    width: 20px;
    height: 20px;
}

.endereco {
    display: flex;
    align-items: center;
    gap: 10px;
}

.endereco img {
    width: 18px;
    height: 18px;
}








/* =======================
   FOOTER BOTTOM
======================= */
.footer-bottom {
    background: #050505;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #222;
}

#copyright-text {
    font-size: 0.8rem;
    color: #777;
}

/* =======================
   RESPONSIVO FOOTER
======================= */
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contato a {
        justify-content: center;
    }
}

/* =======================
   RESPONSIVO 
======================= */


/* ===== CELULAR PEQUENO ===== */
@media (max-width: 600px) {
    .review-carousel {
        width: 95%;
    }

    .hero {
        padding: 10px 0;
        

    }

    .hero h1 {
        margin-top: 50px;
        font-size: 30px;
        line-height: 2rem;


    }

    .btn-primary {
        font-size: 1.3rem;
        font-weight: 300;
    }

    .container,
    .verdadeiro {
        font-size: 20px;
        line-height: 1.6rem !important;

    }

    .pain-text h2 {
        font-size: 25px;

    }

    .pain-text p {
        font-size: 16px;
    }

    .pain-list {
        font-size: 16px;
    }

    .container h2 {
        text-transform: uppercase;
        font-size: 35px;
        line-height: 2.3rem;
    }

    .pain-grid {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }



    .philosophy-grid {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 60px 20px;
    }


    .philosophy-text {
        flex: 1;
        max-width: 600px;
    }


    .philosophy-text h2 {
        font-size: 2.0rem;
        text-transform: uppercase;
        line-height: 1.1;

        margin-bottom: 25px;
        font-weight: 800;
    }


    .btn-secondary {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 300px;
        font-weight: 300;
        margin: 40px auto 0;
        background-color: #262626;
        z-index: 1;
    }


    .philosophy-text p {
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.3;
        font-weight: 400;
    }

    .pain-text {
        flex: 1.2;
        text-align: left;
        line-height: 1.6;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .pain-image img {
        max-width: 100%;
        height: auto;
        margin-left: 0;
        max-height: 600px;
        border-radius: 35px;
    }

    .review-card {
        flex: 0 0 250px;
        height: 450px;
        padding: 15px;
    }

    .review-card img.client-img {
        width: 60px;
        height: 60px;
    }

    .review-card img.car-img {
        height: 150px;
    }

    button.prev,
    button.next {
        font-size: 1.5rem;
        padding: 10px;
    }

    .carousel-indicators {
        bottom: -15px;
        gap: 6px;
    }
}

.contato {
    font-size: 1rem;
}

.contato a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    text-align: left;
}

.contato h4 {
    text-transform: uppercase;
}


.footer h4 {
    text-transform: uppercase;
}

.footer {
    text-align: left;
}

.footer-grid {
    justify-items: start;
    text-align: left;
}


/* /* ===== TABLET ===== */
@media (max-width: 820px) {
    .review-carousel {
        width: 95%;
    }

    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.925), rgba(0, 0, 0, 0.438)),
            url('assets/img/Porsche.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 20px 10px;
    }

    .hero h1 {
        margin-top: 40px;
        font-size: 2.3rem;
        line-height: 2.7rem;
    }



    .btn-primary {
        font-size: 1.1rem;
        padding: 12px 20px;

    }

    .verdadeiro {
        font-size: 1.1rem !important;
        line-height: 2rem;
    }

    .Lavamos {
        font-size: 0.9rem;

    }

    .Lavamos::after {
        width: 220px;
        height: 1px;
        margin: 5px auto 0;
    }

    .qualidade {
        font-size: 0.9rem;

    }

    .pain-text h2 {
        font-size: 1.6rem !important;

    }



    .pain-text p,
    .pain-list {
        font-size: 1rem;
        text-align: left;
        padding: 0px 12px 0px 12px;
    }

    .container h2 {
        text-transform: uppercase;
        font-size: 2.2rem;
    }

    .pain-grid,
    .philosophy-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
    }

    .philosophy-text,
    .pain-text {
        max-width: 100%;
        text-align: center;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .philosophy-text h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .philosophy-text p {
        font-size: 1.1rem;
    }

    .pain-image img {
        max-width: 100%;
        height: auto;
        border-radius: 25px;
    }

    .review-card {
        flex: 0 0 100%;
        height: auto;
        padding: 15px;
        margin-bottom: 20px;
    }

    .review-card img.client-img {
        width: 50px;
        height: 50px;
    }

    .review-card img.car-img {
        height: auto;
        max-height: 200px;
    }

    .Gold {
        padding: 0px 10px 0px 10px;
    }

    .Gold h4 {
        font-size: 3rem !important;
        line-height: 3rem;
    }

    button.prev,
    button.next {
        font-size: 1.5rem;
        padding: 10px;
    }

    .carousel-indicators {
        bottom: -15px;
        gap: 6px;
    }

    .contato {
        font-size: 1rem;
    }

    .contato h4,
    .footer h4 {
        text-transform: uppercase;
    }


    .btn-secondary {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 300px;
        margin: 40px auto 0;
        background-color: #262626;
        z-index: 1;
    }


    .carousel-indicators {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
    }
}