@font-face {
    font-family: "Roobert";
    src: url(https://bcd-kmv-novo.s3.amazonaws.com/lp/rock-in-rio/fonts/Roobert-Regular.otf);
    src: url(../fonts/Roobert-Regular.woff);
    font-weight: 400;
}
@font-face {
    font-family: "Roobert";
    src: url(https://bcd-kmv-novo.s3.amazonaws.com/lp/rock-in-rio/fonts/Roobert-Medium.otf);
    src: url(../fonts/Roobert-Medium.woff);
    font-weight: 500;
}
@font-face {
    font-family: "Roobert";
    src: url(https://bcd-kmv-novo.s3.amazonaws.com/lp/rock-in-rio/fonts/Roobert-SemiBold.otf);
    src: url(../fonts/Roobert-SemiBold.woff);
    font-weight: 600;
}
@font-face {
    font-family: "Roobert";
    src: url(https://bcd-kmv-novo.s3.amazonaws.com/lp/rock-in-rio/fonts/Roobert-Bold.otf);
    src: url(../fonts/Roobert-Bold.woff);
    font-weight: 700;
}
* {
    box-sizing: border-box;
}
h1,h2,h3,p,div,img {
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    text-align: center;
    font-family: "Roobert", Arial, Helvetica, sans-serif;
}
.container {
    max-width: 1920px;
    margin: 0 auto;
    background: #ffffff;
}
.head {
    margin-bottom: 60px;
}
.head img {
    display: block;
    width: 100%;
    border-radius: 0 0 89px 89px;
}
.centr {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 80px;
    justify-content: center;
}
.list {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 40px;
}
.oferta {
    margin: 0 auto;
    max-width: 90%;
    border-radius: 50px;
    padding: 60px;
}
.oferta h1 {
    color: #0045B5;
    text-transform: uppercase;
    font-size: 48px;
    
}
.oferta > p {
    font-size: 48px;
    color: #0045B5;
    margin-bottom: 85px;
}
.oferta h2 {
    font-size: 50px;
    color: #0045B5;
    text-align: left;
}
.centr p {
    font-size: 28px;
    color: #0045B5;
    text-align: left;
    padding-right: 80px;
}
.centr p span {
    color: #FF8B00;
}


.selecionados {
    padding: 80px 140px;
}
.selecionados p {
    font-size: 24px;
    color: #0045B5;
}
.btn {
    display: inline-block;
    text-decoration: none;
    color: #0045B5;
    font-size: 37px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #ffd100;
    padding: 14px 40px;
    border: 3px solid #0045B5;
    border-radius: 20px;
    margin-bottom: 60px;
}
.postos {
    margin: 0 auto;
    background-color: #0045B5;
    border-radius: 130px 130px 0 0;
    padding-top: 60px;
}
.postos h2 {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 60px;
}
.faq-container {
    max-width: 100%;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-bottom: 1px solid #0045B5;
}

/* 🔵 FAQ QUESTION */
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    font-size: 40px;
    font-weight: bold;
    color: #0045B5;
    padding: 30px 60px;
    cursor: pointer;
    display: flex;
    justify-content: center; /* Desktop centralizado */
    align-items: center;
    text-align: center;
    position: relative;
}

.faq-question .arrow {
    position: absolute;
    right: 60px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-question .arrow::after {
    content: "▼";
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}

/* 🔵 ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 40px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 15px;
}

/* LINKS */
.faq-answer a {
    text-decoration: none;
    font-size: 20px;
}
.footer {
    display: flex;
    justify-content: space-between;
    background-color: #ffd100;
    padding: 80px 120px;
}
.footer p {
    font-size: 25px;
    text-align: left;
    color: #0045B5;
}

@media (max-width: 1440px) {
    .selecionados {
        margin: 40px 20px;
        padding: 0;
    }
}

@media (max-width:600px) {
    .head {
        margin-bottom: 24px;
    }
    .head img {
        border-radius: 0 0 24px 24px;
    }
    .oferta {
        padding: 0 12px 24px 12px;
        border-radius: 24px;
    }
    .oferta h1 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .oferta > p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .list {
        flex-direction: column;
        gap: 8px;
    }
    .list+.list {
        margin-top: 40px;
    }
    .oferta h2 {
        font-size: 32px;
        text-align: center;
    }
    .centr p {
        font-size: 16px;
        text-align: center;
        padding: 0;
    }
    .centr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        justify-content: center;
    }
    .selecionados {
        margin: 40px 20px;
        padding: 0;
    }
    .selecionados p {
        font-size: 10px;
        margin-bottom: 28px;
    }
    .btn {
    font-size: 20px;
    padding: 12px 32px;
    border-radius: 12px;
    margin-bottom: 16px;
    }
    .postos {
        padding-top: 32px;
        border-radius: 24px;
    }
    .postos h2 {
        font-size: 24px;
        padding-inline: 12px;
        margin-bottom: 40px;
    }
    .faq-question {
        font-size: 20px;
        padding: 22px 40px 22px 20px;
        justify-content: flex-start; /* texto à esquerda */
        text-align: left;
    }

    .faq-question .arrow {
        right: 20px;  /* seta vai para a direita */
        font-size: 16px;
    }
    .footer {
        flex-direction: column;
        align-items: center;
        padding: 24px 12px;
    }
    .footer p {
        font-size: 10px;
        text-align: center;
        margin-bottom: 24px;
    }
    .footer img {
        width: 140px;
    }
}