@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: #FFD100;
    text-align: center;
    font-family: "Roobert", Arial, Helvetica, sans-serif;
}
.container {
    max-width: 1920px;
    margin: 0 auto;
    background: #FFD100;
}.head {
    margin-bottom: 60px;
}
.head img {
    display: block;
    width: 100%;
}
.centr {
    display: grid;
    justify-content: center;
}
.oferta {
    margin: 0 auto;
    background-color: #F1F1F2;
    max-width: 90%;
    border-radius: 50px;
    padding: 60px;
}
.oferta h1 {
    color: #0045B5;
    font-size: 70px;
    margin-bottom: 85px;
}
.oferta h2 {
    font-size: 90px;
    color: #0045B5;
    text-align: left;
}
.oferta p {
    font-size: 55px;
    font-weight: bold;
    color: #0045B5;
    text-align: left;
    padding-right: 80px;
}
.oferta p span {
    color: #FF8B00;
}
.list-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;

}
.list-1 {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 85px;
}
.selecionados {
    padding: 80px 240px;
}
.selecionados p {
    font-size: 42px;
    font-weight: 600;
    color: #0045B5;
    margin-bottom: 60px;
}
.btn {
    text-decoration: none;
    color: #0045B5;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #FF8B00;
    padding: 12px 32px;
    border-radius: 12px;
}
.postos {
    margin: 0 auto;
    background-color: #0045B5;
    border-radius: 130px 130px 0 0;
    padding-top: 60px;
}
.postos h2 {
    font-size: 80px;
    color: #ffffff;
    margin-bottom: 120px;
}
.faq-container {
    max-width: 100%;
    margin: auto;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #0045B5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.faq-question {
    font-size: 40px;
    color: #0045B5;
    padding: 30px 20px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    padding-left: 40px;
    top: 42px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '▲';
    transform: rotate(360deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* altura suficiente para o conteúdo */
    padding-bottom: 15px;
}
.footer {
    background-color: #ffffff;
    padding: 80px 100px;
}
.texto-legal p{
    margin: 0 auto;
    font-size: 25px;
    color: #0045B5;
    max-width: 80%;
}

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

@media (max-width:600px) {
    .head {
        margin-bottom: 24px;
    }
    .oferta {
        padding: 32px;
        border-radius: 24px;
    }
    .oferta h1 {
        font-size: 24px;
        margin-bottom: 32px;
    }
    .list-1 img, .list-2 img {
        width: 80%;
    }
    .list-1, .list-2 {
        flex-direction: column;
        gap: 6px;
    }
    .list-1 {
        margin-bottom: 40px;
    }
    .list-2:nth-child(2) {
        margin-bottom: 40px;
    }
    .list-2 {
        flex-direction: column-reverse;
    }
    .oferta h2 {
        font-size: 32px;
        text-align: center;
    }
    .oferta p {
        font-size: 18px;
        text-align: center;
        padding: 0;
    }
    .selecionados {
        margin: 40px 20px;
        padding: 0;
    }
    .selecionados p {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .btn {
    font-size: 20px;
    padding: 12px 32px;
    border-radius: 12px;
    }
    .postos {
        padding-top: 32px;
        border-radius: 24px;
    }
    .postos h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .faq-question {
        font-size: 24px;
    }
    .faq-question::after {
    content: '▼';
    top: 34px;
    padding-left: 24px;
    font-size: 16px;
    }
    .footer {
        padding: 40px 10px;
    }
    .texto-legal p {
        font-size: 10px;
    }
}