/* === MINI-BS LITE === */
*,*::before,*::after{box-sizing:border-box}html{font-size:16px;-webkit-text-size-adjust:100%;scroll-behavior:smooth}body{margin:0;font-family:'Lato',system-ui,sans-serif;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}p{margin-top:0;margin-bottom:1rem}ul,ol{margin-top:0;margin-bottom:1rem;padding-left:2rem}a{color:#0d6efd;text-decoration:underline}a:hover{color:#18aefa}img,svg,video{max-width:100%;height:auto;display:block}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button{cursor:pointer}.container,.container-fluid{width:100%;padding-right:.75rem;padding-left:.75rem;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-.75rem;margin-left:-.75rem}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:.75rem;padding-left:.75rem}.col-12{flex:0 0 auto;width:100%}.d-flex{display:flex!important}.d-none{display:none!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.align-items-center{align-items:center!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.text-center{text-align:center!important}.fw-bold{font-weight:700!important}.text-white{color:#fff!important}.w-100{width:100%!important}.overflow-hidden{overflow:hidden!important}

:root {
    --color-red: #f32211;
    --color-title-cyan: #18aefa;
    --color-yellow: #e9d710;
    --color-bg-blue: #00104d;
    --color-white: #ffffff;
    --color-card: #263bb0;
    --font-title: "Merriweather", Georgia, serif;
    --font-body: "Lato", Arial, sans-serif;
    --section-pad: 45px;
    --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

body {
    min-width: 320px;
    color: var(--color-white);
    background: url("images/bg.jpg");
    font-family: var(--font-body);
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #001151;
}

h1,
h2,
h3 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
}
h2 {
    color: var(--color-title-cyan);
    font-size: 45px;
}
h3 {
    font-size: 35px;
}
p {
    font-size: 22px;
    line-height: 1.1;
}
a {
    color: inherit;
}

.img-fluid{
max-width: 100%;
height: auto;
margin: 0 auto;    
}    

.section-pad {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
}
.section-pad-top {
    padding-top: var(--section-pad);
}
.section-pad-bottom {
    padding-bottom: var(--section-pad);
}
.narrow {
    max-width: 800px;
}
.center-block,
.center-img {
    margin-right: auto;
    margin-left: auto;
}

.hero {
    position: relative;
    min-height: 710px;
    padding-top: 54px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 5px;
}
.hero-brand {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0px;
}
.brand-stack {
    width: min(100%, 520px);
}
.folha-logo {
    width: 72%;
    margin: 0 auto -8px;
}
.rock-logo {
    width: 500px !important;
    margin: 23px auto 0;
    animation: floatLogo 3s var(--ease-soft) infinite;
    max-width: none;
}
.ray {
    width: 135px;
    margin-top: -32px;
    animation: pulseRay 1.5s var(--ease-soft) infinite;
}
.ray-right {
    animation-delay: 0.9s;
}
.hero-title,
.offer-title {
    max-width: 680px;
    margin: 6px auto 8px;
    color: var(--color-yellow);
    font-size: 49px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}
.hero-title span,
.offer-title span {
    display: block;
    color: var(--color-yellow);
    font-size: 28px;
}
.hero-offer {
    width: min(100%, 419px);
    margin: 0 auto;
}
.btn-cta {
    display: inline-flex;
    min-height: 67px;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    border: 0;
    border-radius: 999px;
    color: var(--color-white);
    background: linear-gradient(
90deg, #ff654b -19%, var(--color-red) 100%);
    box-shadow: 0px 6px 0 rgb(77 19 16 / 55%), 0 16px 30px rgba(0, 0, 0, 0.28);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.4px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.35s var(--ease-soft),
        box-shadow 0.35s var(--ease-soft),
        filter 0.35s var(--ease-soft);
    width: 410px;
    margin-top: 18px;
    box-shadow: rgba(255, 255, 255, 0.14) 0px 0px 0px 1px inset, rgba(255, 255, 255, 0.18) 0px 1px 0px inset, rgba(0, 0, 0, 0.35) 0px 12px 40px;
}
.btn-cta:hover,
.btn-cta:focus-visible {
    color: var(--color-white);
    filter: saturate(1.08);
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 rgba(129, 16, 11, 0.5),
        0 18px 34px rgba(0, 0, 0, 0.32);
}
.cancel-note {
    margin: 12px 0 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.down-link {
    display: inline-flex;
    color: var(--color-red);
    text-decoration: none;
    animation: floatArrow 2.8s var(--ease-soft) infinite;
}

.section-card-wrap {
    position: relative;
    z-index: 1;
}
.info-card {
    padding: 45px 45px !important;
    border-radius: 8px;
    background: url("images/textura.jpg");
    box-shadow: rgba(255, 255, 255, 0.14) 0px 0px 0px 1px inset, rgba(255, 255, 255, 0.18) 0px 1px 0px inset, rgba(0, 0, 0, 0.35) 0px 12px 40px;
    background-size: cover;
}
.rounded-media {
    width: 100%;
    border-radius: 7px;
}
.participar-video {
    aspect-ratio: 32/23;
    object-fit: cover;
    background: #00104d;
}
#como-participar .info-card,
.calendar-card {
    padding-top: 40px;
    padding-bottom: 40px;
}

.icon-calendario {
    height: 68px;
}

.calendar-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.35rem 0 0.5rem;
}

.calendar-prefix {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 0.15rem;
    margin-top: 16px;
}

.calendar-date h3 {
    margin: 0;
}

.col-texto {
    padding: 0 12px 0 22px;
}

.steps-list {
    display: grid;
    gap: 18px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}
.steps-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    align-content: center;
}
.steps-list p {
    margin: 14px 0 0 40px;
    font-size: 22px;
}
.step-pin {
    display: grid;
    width: 68px;
    height: 86px;
    place-items: center;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    background-image: url("images/step-pin.png");
    background-position-y: 8px;
    background-repeat: no-repeat;
}
.lineup-section {
    display: grid;
    gap: 18px;
    padding: 28px 0;
    overflow: hidden;
}
.lineup-row {
    display: flex;
    width: 100%;
    overflow: hidden;
}
.lineup-track {
    display: flex;
    width: max-content;
    min-width: max-content;
    align-items: center;
    white-space: nowrap;
    animation: lineupScroll 100s linear infinite;
    will-change: transform;
}
.lineup-row-reverse .lineup-track {
    animation-name: lineupScrollReverse;
}
.lineup-row:hover .lineup-track {
    animation-play-state: paused;
}
.lineup-group {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-right: 18px;
}
.lineup-name {
    font-size: 35px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 7px;
}
.lineup-name.strong {
    font-weight: 900;
}
.lineup-name.light {
    font-weight: 300;
}
.star {
    width: 22px;
    min-width: 22px;
    fill: var(--color-yellow);
}


.info-card h2 {
    margin-bottom: 27px;
    color: #ffffff;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 28px;
    max-width: 840px;
    margin: 0 auto;
}
.calendar-item svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
    fill: var(--color-red);
}
.calendar-item h3 {
    margin: 16px 0 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 700;
}
.calendar-item p {
    margin: 4px 0 0;
    font-size: 17px;
    font-weight: 500;
}
.offer-section {
    background: url("images/bg-oferta.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.offer-section .oferta-img {
    width: min(100%, 419px);
}
.benefits-section h2,
.faq-section h2,
.luck-section h2 {
    color: var(--color-title-cyan);
}
.benefits-section .narrow p {
    margin-bottom: 28px;
    font-size: 20px;
}
.slider-shell {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 18px;
    margin: 0 auto;
}
.benefits-carousel {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    padding: 4px;
}
.benefit-card {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    border-radius: 25px;
    background: #10183e;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
    border: 2px solid #233183;
}
.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--card-img);
    background-size: cover;
    background-position: center;
    transition: transform 3s var(--ease-soft);
}
.benefit-card:hover::before {
    transform: scale(1.12);
}
.benefit-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px;
    background: rgb(9 10 12 / 86%);
    width: 92%;
    margin: 0 auto 14px;
    border-radius: 7px;
    height: 116px;
    backdrop-filter: blur(4px);
    box-shadow: rgba(255, 255, 255, 0.14) 0px 0px 0px 1px inset, rgba(255, 255, 255, 0.18) 0px 1px 0px inset, rgba(0, 0, 0, 0.35) 0px 12px 40px;
}
.benefit-caption h3 {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
}
.benefit-caption p {
    margin: 0;
    font-size: 15px;
    line-height: 1.18;
}
.slider-btn {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-red);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
    transition:
        transform 0.4s var(--ease-soft),
        filter 0.4s var(--ease-soft);
}
.slider-btn:hover,
.slider-btn:focus-visible {
    filter: saturate(1.1);
    transform: translateY(-2px) scale(1.03);
}
.slider-btn svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.faq-list {
    margin-top: 28px;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border: 0;
    color: var(--color-white);
    background: transparent;
    text-align: left;
}
.faq-question span:first-child {
    font-size: 18px;
    font-weight: 700;
}
.faq-icon {
    display: grid;
    width: 26px;
    min-width: 26px;
    height: 26px;
    place-items: center;
    color: var(--color-red);
    transition: transform 0.35s var(--ease-soft);
}
.faq-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
}
.faq-question:hover .faq-icon,
.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s var(--ease-soft);
}
.faq-answer p {
    margin: 0;
    padding: 0 42px 16px 0;
    font-size: 17px;
}
.luck-section {
    padding-bottom: 18px;
}
.footer {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    padding: 390px 0 70px;
    color: var(--color-white);
    background: var(--color-red);
    background-image: url("images/bg-footer.jpg");
}
.footer-flames {
    position: absolute;
    top: -1px;
    left: 50%;
    width: 100%;
    min-width: 1180px;
    transform: translateX(-50%);
}
.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 42px;
}
.footer h3 {
    margin-bottom: 18px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 900;
}
.footer p {
    font-size: 13px;
    line-height: 1.35;
}
.social-list,
.payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.social-list a, .payment-list span {
    display: grid;
    min-width: 28px;
    height: 24px;
    place-items: center;
    border-radius: 4px;
    color: var(--color-red);
    background: none;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}
.payment-list span {
    padding: 0 6px;
}
.fixed-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}
.fixed-banner.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.fixed-banner-inner {
    border-radius: 8px;
    background: transparent;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    margin: 0 auto 12px;
}
.fixed-banner-inner img {
    border-radius: 7px;
}
.reveal {
    opacity: 0;
    transform: translateY(164px);
    transition:
        opacity 0.3s var(--ease-soft),
        transform 0.6s var(--ease-soft);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.texto-legal {
    max-width: 1200px;
    margin: 50px auto 0;
    font-size: 14px;
    line-height: 1.4;
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes pulseRay {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.045);
    }
}
@keyframes floatArrow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}
@keyframes lineupScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes lineupScrollReverse {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (max-width: 767px) {
    :root {
        --section-pad: 38px;
    }
    
    
.texto-legal {
    padding: 0 20px;
}    
    
.col-texto {
    padding: 0 12px 0 14px;
}    
    
.benefits-section .narrow p {
    font-size: 18px;
}    
    
.footer {
    background-image: url("images/bg-footer-mobile.jpg");
}    
    
    
.rock-logo {
    max-width: 340px;
}
    
    
.info-card {
    padding: 28px 20px !important;
   }    
    
    
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 28px;
    }
    p {
        font-size: 20px;
    }
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
    .narrow {
        max-width: 100%;
    }
    .hero {
        min-height: 630px;
        padding-top: 24px;
    }
    .hero-brand {
        gap: 4px;
    }
    .brand-stack {
        width: min(100%, 360px);
    }
    .folha-logo {
        width: 74%;
        margin-bottom: -2px;
    }
.ray {
    width: 100px;
    margin-left: -40px;
    margin-right: -40px;
}
.hero-title, .offer-title {
    font-size: 33px;
    line-height: 1.2;
}
    
.info-card h2 {
    margin-bottom: 15px;
 }    
    .hero-title span,
    .offer-title span {
        font-size: 21px;
    }
    .hero-offer,
    .offer-section .oferta-img {
        width: min(100%, 340px);
    }
.btn-cta {
    min-height: 58px;
    padding: 0 24px;
    font-size: 19px;
    width: 100%;
}
    .info-card {
        padding: 18px;
    }
    #como-participar .info-card,
    .calendar-card {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .gap-mobile {
        row-gap: 20px;
    }
    .steps-list p {
        font-size: 17px;
    }
    .lineup-section {
        gap: 14px;
        padding: 18px 0;
    }
.lineup-track {
    animation-duration: 90s;
}
    .lineup-group {
        gap: 14px;
        padding-right: 14px;
    }
    .lineup-name {
        font-size: 25px;
        letter-spacing: 4px;
    }
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 12px;
    }
.slider-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 360px;
}
    .benefits-carousel {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 350px;
    }
    .slider-prev-benefits {
        justify-self: end;
        grid-column: 1;
        grid-row: 2;
    }
    .slider-next-benefits {
        justify-self: start;
        grid-column: 2;
        grid-row: 2;
    }
.benefit-card {
    min-height: 400px;
}
    .faq-question span:first-child {
        font-size: 17px;
    }
.footer {
    padding-top: 290px;
    padding: 300px 20px 40px;
}
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    
.fixed-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    left: 0;
    width: 100%;
}    
    

}
@media (min-width: 768px) and (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 30px;
    }
    .footer-col:last-child {
        grid-column: 2 / 4;
    }
}
@media (min-width: 1920px) {
    .container {
        max-width: 1240px;
    }
}
