@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Montserrat:wght@300;400;500;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

/*
Fonts
cursive
sans serif 
Colors
white e7e7e5
yellow d3af37
gray 2d2d2d
black 161616
*/

html,
body {
    max-height: 100%;
    overflow-x: hidden;
    background-color: #2d2d2d;
    font-family: "Montserrat", sans-serif;
    color: #e7e7e5;
    scroll-behavior: smooth;
}

/*Header*/
header {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 100px;
    background: transparent;
    width: 100%;
}

header #logo img {
    width: 250px;
}

header #menu {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    left: 50%;
    right: 50%;
}

header #menu a {
    position: relative;
    display: flex;
    font-weight: 600;
    font-size: 16px;
    color: #d3af37;
    text-decoration: none;
    margin: 0 1vw;
    padding: 0 10px;
}

header #menu a.active {
    color: #d3af37;
}

#btn-mobile {
    display: none;
}

/*WhatsApp Button*/
.wpp-btn {
    z-index: 99;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 15px;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: 50px;
    padding: 20px;
    background-color: #d3af37;
    cursor: pointer;
    transition: 0.5s;
}

.wpp-btn p {
    margin-left: 15px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s linear;
    transition-delay: 0.2s;
    color: #161616;
}

.wpp-btn img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 12px;
}

/*Scroll to Top Button*/
.scroll-btn {
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    padding: 20px;
    border: none;
    cursor: pointer;
    background-color: #d3af37;

    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: translateY(30px);
    }
}

.scroll-btn img {
    height: 20px;
    width: 20px;
}

/*Content*/
section {
    padding: 48px 120px;
}

.title-div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-weight: 500;
    font-size: 42px;
    font-family: "DM Serif Text", serif;
}

h2 {
    font-size: 18px;
    font-weight: 500;
    color: #d3af37;
}

.btns {
    display: flex;
    gap: 15px;
}

.btn {
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;
    background-color: #d3af37;
    padding: 12px 15px;
    color: #161616;
    transition: 0.3s ease-in-out;
}

.btn2 {
    background-color: transparent;
    border: 2px solid #d3af37;
    color: #e7e7e5;
}

/*Main*/
.main {
    background-image: url(/assets/main-img.png);
    background-position: right;
    background-size: cover;

    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 78px;
    padding-top: 78px;
}

.mainTop {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
    margin-top: 28px;
}

.mainTop h1 {
    color: #e7e7e5;
    font-size: 44px;
}

.mainTop p {
    color: #e7e7e5;
}

.mainBot {
    display: flex;
    margin-top: 24px;
    gap: 20px;
    color: #e7e7e5;
    width: 35%;
}

.mainBot img {
    height: 45px;
}

.mainBot p {
    font-size: 12px;
    padding-top: 4px;
}

/*Infinite Slider*/
.infinitSlider {
    width: 100%;
    overflow: hidden;
    background: #d3af37;
    background: linear-gradient(90deg,rgba(186, 155, 52, 1) 1%, rgba(211, 175, 55, 1) 50%, rgba(186, 155, 52, 1) 100%);
    color: #161616;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 0;
}

.infinitSlider-div {
    display: flex;
    align-items: center;
    width: max-content;
    animation: slide 20s linear infinite;
}

.infinitSlider-div img {
    height: 40px;
    margin: 0 20px;
}

@keyframes slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*Differentials*/
.diff {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.diff .diff-div {
    display: flex;
    gap: 15px;
    align-items: center;
}

.diff .diff-div div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.diff-div img {
    width: 50px;
}

.diff p {
    font-size: 14px;
}

/*Reciclar*/
.recycle {
    display: flex;
    gap: 100px;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 72px;
    padding-bottom: 72px;

    background-image: url(/assets/recycle-bg.png);
    background-size: cover;
    background-position: center;
}

.recycleImg {
    flex: 1;
    display: flex;
}

.recycleImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.recycleTxt {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 60%;    
}

.recycleTxt p {
    font-size: 14px;
}

.recycleTxt .recycleTxt-div {
    display: flex;
    gap: 38px;
    width: 400px;
    margin-top: 20px;
}

.recycleTxt .recycleTxt-div div {
    width: 100%;
}

.recycleTxt-div ion-icon {
    font-size: 28px;
    color: #d3af37;
}


/*Mensagem*/
.message {
    display: flex;
    gap: 72px;
    justify-content: space-between;
    padding-right: 15vw;
    padding-left: 15vw;

    background-image: url(/assets/message-bg.png);
    background-size: cover;
    background-position: center;
}

.message .messageTxt {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.messageTxt .messageTxt-div {
    display: flex;
    gap: 10px;
    align-items: center;

}

.messageTxt-div ion-icon {
    font-size: 22px;
}

.messageTxt-div h4 {
    font-weight: 600;
}

.messageTxt .btn {
    width: max-content;
}

.messageTxt .btn, .message .btn span {
    align-items: center;
    vertical-align: middle;
}

.message img {
    width: 400px;
}

/*Sobre Nós*/
.about {
    display: flex;
    gap: 100px;
    margin-bottom: 28px;
    margin-left: 100px;
    margin-right: 100px;
}

.about .about-img {
    width: 50%;
}

.about img {
    width: 100%;
}

.about .about-txt {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.about .about-txtDiv {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.about-txtDiv h1 {
    font-size: 26px;
    font-weight: 700;
    color: #d3af37;
    font-family: "Montserrat", sans-serif;
}

.about .about-txtBot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 32px 0;
    width: 80%;
}

.about-txtBot img {
    width: 130px;
}

.about-txtBot p {
    font-size: 12px;
    font-weight: 400px;
}

/*Conheça nosso espaço*/
.spot {
    background-image: url(/assets/spot-img.png);
    background-position: right center;
    background-size: cover;

    display: flex;
}

.spotTxt {
    display: flex;
    flex-direction: column;
    width: 400px;
    gap: 18px;
    margin-bottom: 42px;
}

.spotTxt-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spotTxt p {
    font-size: 14px;
}

.spotStep-div {
    display: flex;
    gap: 25px;
}

.spotStep-div .spotStep-divCircle {
    background-color: #d3af37;
    height: 50px;
    width: 50px;
    min-width: 50px;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 16px;
    font-weight: 600;
}

.spotStep-div .spotStep-divLine {
    display: flex;
    flex-direction: column;
}

.spotTxt .btns .btn1 {
    background-color: #1a425c;
    color: #e7e7e5;
}

.spotTxt .btn2 {
    background-color: #82531f;
    border: none;
}

/*Avaliações*/
.reviews {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.reviewsTxt {
    text-align: center;
}

.reviewsBot {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out; /* mover o slider */
}

.reviewsBot .reviewsContainer {
    flex: 0 0 calc((100% - 40px) / 3); /* 3 cards menos os 2 gaps */
    max-width: calc((100% - 40px) / 3);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    background-color: #e7e7e5;
    color: #161616;
    padding: 20px;
}

.reviewsContainer .reviewsStars {
    color: #f6bb06;
    font-size: 22px;
    margin: 3px 0;
}

.reviewsContainer .reviewsText {
    margin-top: 10px;
}

.reviewsBot .reviewsContainer-div {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    position: relative;
}

.reviewsContainer-div h4 {
    font-weight: 500;
}

.reviewsContainer-div p {
    font-weight: 300;
    font-size: 14px;
}

.reviewsContainer-div .reviewsContainer-divPP {
    width: 40px;
}

.reviewsContainer-div .reviewsContainer-divGG {
    width: 25px;
    position: absolute;
    right: 0;
    top: 0;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
  gap: 20px;
}

.reviewsWrapper {
  overflow: hidden;
  width: 100%;
  flex: 1;
}

.reviewsBtn.prev, .reviewsBtn.next {
  background: #444;
  color: #e7e7e5;
  border: none;
  padding: 8px 14px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
}



/*Perguntas*/
.faqPrincipal {
    display: flex;
    gap: none;
    flex-direction: column;
}

.faqIMGbg {
    width: 100%;
}

.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #e7e7e5;
    color: #161616;
    padding: 0;
    padding-bottom: 72px;
}

.faqTxt {
    text-align: center;
    padding-bottom: 24px;
}

.faqBot {
    display: flex;
    gap: 50px;
}

.faqQuestions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faqQuestions details {
    display: flex;
    flex-direction: column;
    width: 700px;
    justify-content: space-between;
}

.faqQuestions p {
    font-weight: 300;
    font-size: 14px;
    padding: 0 20px;
    padding-bottom: 15px;
}

.faqQuestions summary {
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 10px;
    background-color: #dddddd;
    padding: 10px 20px;
    font-weight: 600;
}

.faqQuestions summary::after {
    content: "\002B";
}

.faqQuestions details[open] summary::after {
    content: "\002D";
}

.faqQuestions details[open] {
    background-color: #2d2d2d;
    border-radius: 10px;
    color: #e7e7e5;
}

.faqQuestions details[open] summary {
    background-color: transparent;
}

.faqSide {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faqSide .faqSide-div1 {
    border-radius: 25px;
    padding: 25px;
    background-color: #2d2d2d;
    color: #e7e7e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 300px;
    text-align: center;
}

.faqSide-div1 ion-icon {
    color: #2d2d2d;
    font-size: 38px;
    border-radius: 50%;
    background-color: #d3af37;
    padding: 5px;
}

.faqSide-div1 p {
    font-size: 14px;
}

.faqSide-div1 h4, .faqSide-div2 h4 {
    font-weight: 600;
    font-size: 14px;
}

.faqSide .faqSide-div2 {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 25px;
    background-color: #dddddd;
    border-radius: 25px;
    width: 300px;
    color: #2d2d2d;
}

.faqSide-div2 p {
    font-size: 12px;
}

.faqSide-div2 ion-icon {
    color: #2d2d2d;
    font-size: 28px;
    padding: 5px;
    background-color: #d3af37;
    border-radius: 50%;
}

/*Location*/
.location {
    padding: 0;
    background-color: #e7e7e5;
}

.location iframe {
    width: 100%;
}

/*Footer*/
footer {
    display: flex;
    flex-direction: column;
    padding: 48px 120px;
}

footer p {
    font-size: 14px;
}

footer a {
    font-size: 14px;
    color: #e7e7e5;
}

footer .footerMid {
    display: flex;
    padding-bottom: 20px;
    justify-content: space-between;
    gap: 50px;
}

footer .footerMid-div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

footer .footerMid-div h4 {
    padding-bottom: 10px;
    color: #d3af37;
}

footer .footerMid-divMain {
    gap: 15px;
}

footer .footerMid-divMenu {
    align-items: center;
}

footer .footerMid-divMain img {
    width: 300px;
}

.footerMid .footer-icons {
    display: flex;
    gap: 7px;
}

.footer-icons a ion-icon {
    font-size: 16px;
    color: #e7e7e5;
    border-radius: 50%;
    border: 1px solid #e7e7e5;
    padding: 7px;
}



.footerBot {
    display: flex;
    justify-content: center;
    text-align: center;
    border-top: 1px solid #d3af37;
    padding-top: 20px;
}

/*Resposive PC*/
@media screen and (min-width: 1024px) {
    /*Header*/
    header #menu a::after {
        content: "";
        position: absolute;
        background-color: #e7e7e5;
        height: 1px;
        width: 0;
        left: 0;
        bottom: -10px;
        transition: 0.3s;
    }

    header #menu a:hover {
        color: #e7e7e5;
    }

    header #menu a:hover::after {
        width: 100%;
    }

    .btn1:hover {
        background-color: #f6bb06;
    }

    .btn2:hover {
        background-color: #d3af37;
        color: #161616;
    }

    .spot .btn1:hover {
        color: #e7e7e5;
        background-color: #d3af37;
    }

    .reviewsBtn:hover {
        background: #d3af37;
    }

    footer .footerMid-divMenu a:hover {
        color: #d3af37;
    }

    .footer-icons a ion-icon:hover {
        background-color: #d3af37;
        border: 1px solid #d3af37;
    }
}

/*Responsive Tablet*/
@media screen and (min-width:767px) and (max-width:1024px) {
    /*Header*/
    header #logo img {
        width: 200px;
    }

    header #btn {
        display: none;
    }

    header {
        box-sizing: border-box;
        height: 70px;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: rgba(22, 22, 22, 0.6);
    }

    header #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 70px;
        right: 0;
        left: 0;
        background-color: rgba(22, 22, 22, 0.7);
        transition: 0.6s;
        z-index: 10000;
        height: 0;
        visibility: hidden;
        overflow-y: hidden;
    }

    #nav.active #menu {
        height: calc(100vh - 70px);
        visibility: visible;
        overflow-y: auto;
    }

    header #menu a {
        display: block;
        padding: 1rem 0;
        margin: 0 1rem;
        color: #e7e7e5;
        border-bottom: 0.4px solid #d3af37;
    }

    header #btn-mobile {
        color: #d3af37;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
    }

    #btn-mobile {
        display: flex;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: 0.5rem;
    }

    #hamburger {
        border-top: 2px solid;
        width: 20px;
    }

    #hamburger::after,
    #hamburger::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: 0.3s;
        position: relative;
    }

    #nav.active #hamburger {
        border-top-color: transparent;
    }

    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }

    /*Content*/
    section {
        padding: 28px 48px;
    }

    /*Main*/
    .main {
        text-align: center;
        align-items: center;
        background-position: left center;
        padding-bottom: 42px;
    }

    .mainTop {
        width: 90%;
        align-items: center;
    }

    .mainBot {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    /*Sobre Nós*/
    .about {
        margin: auto;
    }

    .about .about-txt {
        width: 100%;
    }

    .about .about-img {
        display: none;
    }

    /*Spot*/
    .spot {
        padding-bottom: 300px;
        background-position: center bottom;
        background-image: url(/assets/spot-img-smartphone.png);
    }

    /*Recycle*/
    .recycle {
        background-position: center;
        background-size: cover;
        gap: 25px;
    }

    .recycle .recycleTxt {
        width: 100%;
    }

    .recycleImg {
        display: none;
    }

    /*Message*/
    .message {
        background-position: center;
        background-size: cover;
        padding: 28px 48px;
        gap: 25px;
    }

    .message p {
        font-size: 14px;
    }

    .message img {
        width: 250px;
    }

    /*Avaliações*/
    .slider {
        max-width: 90%;
        gap: 15px;
    }

    .reviewsBot .reviewsContainer {
        flex: 0 0 48%; /* 2 cards por vez no tablet */
        max-width: 48%;
    }

    /*FAQ*/
    .faqBot {
        gap: 25px;
    }

    .faqQuestions details {
        width: 400px;
    }

    /*Footer*/
    footer {
        padding: 28px 48px;
    }

    footer .footerMid-divMain img {
        width: 220px;
    }
}

/*Responsive Smartphone*/
@media screen and (max-width: 767px) {
    /*Header*/
    header #logo img {
        width: 180px;
    }

    header #btn {
        display: none;
    }

    header {
        box-sizing: border-box;
        height: 70px;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: rgba(22, 22, 22, 0.6);
    }

    header #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 70px;
        right: 0;
        left: 0;
        background-color: rgba(22, 22, 22, 0.7);
        transition: 0.6s;
        z-index: 10000;
        height: 0;
        visibility: hidden;
        overflow-y: hidden;
    }

    #nav.active #menu {
        height: calc(100vh - 70px);
        visibility: visible;
        overflow-y: auto;
    }

    header #menu a {
        display: block;
        padding: 1rem 0;
        margin: 0 1rem;
        color: #e7e7e5;
        border-bottom: 0.4px solid #d3af37;
    }

    header #btn-mobile {
        color: #d3af37;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
    }

    #btn-mobile {
        display: flex;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: 0.5rem;
    }

    #hamburger {
        border-top: 2px solid;
        width: 20px;
    }

    #hamburger::after,
    #hamburger::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: 0.3s;
        position: relative;
    }

    #nav.active #hamburger {
        border-top-color: transparent;
    }

    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }

    /*Content*/
    section {
        padding: 36px 20px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 14px;
    }

    /*Main*/
    .main {
        background-position: left;
    }

    .mainTop {
        align-items: center;
        width: 100%;
    }

    .mainTop h1 {
        font-size: 34px;
    }

    .mainBot {
        flex-direction: column;
        width: 100%;
        align-items: end;
        text-align: end;
    }

    .mainBot img {
        height: auto;
        width: 150px;
    }

    /*Slider Infinito*/
    .infinitSlider {
        font-size: 16px;
    }

    .infinitSlider-div {
        animation: slide 15s linear infinite;
    }

    .infinitSlider-div img {
        height: 30px;
        margin: 0 15px;
    }

    /*Diff*/
    .diff {
        flex-direction: column;

        padding-bottom: 10px;
    }

    /*Sobre Nós*/
    .about {
        flex-direction: column;
        gap: 50px;
        margin: auto;
    }

    .about .about-img {
        display: none;
    }

    .about .about-txt {
        width: 100%;
    }

    .about .about-txtDiv {
        display: flex;
        justify-content: space-between;
        padding: 14px 0;
    }

    .about-txtDiv h1 {
        font-size: 20px;
    }

    .about-txtDiv p {
        font-size: 12px;
    }

    .about .about-txtBot {
        margin: 24px 0;
        width: 100%;
    }

    /*Spot*/
    .spot {
        background-image: url(/assets/spot-img-smartphone.png);
        background-position: bottom center;
        padding-bottom: 120px;
    }

    /*Recycle*/
    .recycle {
        flex-direction: column;
        gap: 30px;
        padding-top: 38px;
        padding-bottom: 38px;

        background-image: url(/assets/recycle-bg-smartphone.png);
        background-position: center;
        background-size: cover;
    }

    .recycleTxt {
        width: 100%;
    }

    .recycleTxt .recycleTxt-div {
        width: 100%;
        gap: 20px;
    }

    /*Dúvidas*/
    .message {
        flex-direction: column;
        gap: 48px;
        padding: 36px 24px;

        background-position: center;
        background-size: cover;
    }

    .message img {
        width: 100%;
    }

    /*Avaliações*/
    .slider {
        max-width: 100%;
        gap: 15px;
    }

    .reviewsBot .reviewsContainer {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reviewsBtn.prev, .reviewsBtn.next {
        padding: 8px;
    }

    .reviewsContainer-div h4 {
        font-size: 14px;
    }

    .reviewsContainer-div p {
        font-size: 12px;
    }

    .reviewsContainer-div .reviewsContainer-divGG {
        width: 20px;
    }

    .reviewsBot .reviewsContainer-div {
        padding-right: 25px;
    }

    /*Faq*/
    .faqBot {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 25px;
    }
    
    .faq {
        padding-bottom: 25px;
    }

    .faqTxt {
        padding-bottom: 0;
    }

    .faqSide {
        gap: 15px;
    }

    .faqQuestions {
        gap: 10px;
    }

    .faqQuestions details {
        width: 100%;
    }

    /*Location*/
    .location iframe {
        height: 400px;
    }

    /*Footer*/
    footer {
        padding: 22px;
    }

    footer .footerMid {
        flex-direction: column;
        text-align: left;
        gap: 25px;
    }

    .footerMid-divMain {
        text-align: left;
    }

    .footerMid-divMain img {
        max-width: 100%;
    }

    footer .footerMid-divMenu {
        text-align: left;
        align-items: baseline;
    }
}