/* Home - Pos NRF (novo design Figma) */

/* ==========================================================================
   Hero
   ========================================================================== */

.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: calc(100vh - 72px);
    overflow: hidden;
    background-color: var(--purple-10);
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 1, 143, 0.6) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    animation: hero-sparkle 6s ease-in-out infinite;
}

.hero-section::after {
    background-position: 16px 16px;
    animation-duration: 8s;
    animation-delay: -3s;
}

@keyframes hero-sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .hero-section::after {
        animation: none;
        opacity: 0.5;
    }
}

.hero-section__ticker {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--space-12) var(--space-24);
}

.hero-section__ticker-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .hero-section__ticker-list li {
        width: 200px;
        color: var(--accent-cream);
        white-space: nowrap;
    }

.hero-section__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1 0 0%;
    justify-content: space-between;
    width: 100%;
}

.hero-section__col {
    display: flex;
    flex: 1 0 0%;
    min-width: 0;
}

.hero-section__col--text {
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-6);
    padding-left: var(--space-24);
}

.hero-section__col--media {
    position: relative;
    align-items: center;
    justify-content: center;
}

.hero-section__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-24);
    max-width: clamp(440px, calc(440px + (100vw - 1200px) * 0.406), 732px);
}

.hero-section__title {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.hero-section__title-highlight {
    color: var(--pink-20);
}

.hero-section__title-base {
    color: var(--accent-cream);
}

.hero-section__cta {
    color: var(--accent-cream);
    padding: var(--space-12) var(--space-24);
    border-radius: var(--space-32);
}

.hero-section__bg-pattern {
    position: absolute;
    top: 50%;
    right: -8%;
    width: 115%;
    max-width: 1200px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.hero-section__video-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: clamp(372px, calc(372px + (100vw - 1200px) * 0.344), 620px);
    aspect-ratio: 620 / 573;
}

.hero-section__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--purple-20);
}

.hero-section__badge {
    position: absolute;
    left: calc(-1 * var(--space-40));
    top: calc(-1 * var(--space-24));
    width: 190px;
    padding: var(--space-16);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.hero-section__badge-star {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    animation: hero-badge-spin 7.2s linear infinite;
    left: -4px;
    top: -25px;
}

.hero-section__badge-title {
    display: block;
    color: var(--pink-20);
}

.hero-section__badge-text {
    margin: 0;
    color: var(--purple-20);
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 1.3ch;
    line-height: 1.5ch;
    letter-spacing: -0.3px;
    max-width: 13ch;
    text-transform: uppercase;
    text-align: left;
}

@keyframes hero-badge-spin {
    from {
        transform: rotate(14deg);
    }

    to {
        transform: rotate(374deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section__badge-star {
        animation: none;
    }
}

@media (max-width: 1200px) {
    .hero-section__title-highlight,
    .hero-section__title-base {
        font-size: 72px;
    }
}

@media (max-width: 998px) {
    .hero-section__content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-32);
        padding-top: var(--space-32);
    }

    .hero-section__col--text {
        align-items: center;
        padding-left: 0;
    }

    .hero-section__text {
        align-items: center;
        max-width: 100%;
    }

    .hero-section__col--media {
        width: 100%;
    }

    .hero-section__ticker-list {
        justify-content: center;
        text-align: center;
    }

    .hero-section__bg-pattern {
        opacity: 0.4;
    }

    .hero-section__badge {
        left: 0;
        top: calc(-1 * var(--space-16));
    }
}

@media (max-width: 600px) {
    .hero-section__title-highlight,
    .hero-section__title-base {
        font-size: 44px;
    }

    .hero-section__ticker-list {
        flex-wrap: wrap;
        row-gap: var(--space-8);
        gap: var(--space-16);
    }

        .hero-section__ticker-list li {
            width: auto;
            font-size: 18px;
        }

    .hero-section__bg-pattern {
        display: none;
    }

    .hero-section__badge {
        width: 140px;
    }

    .hero-section__badge-title {
        font-size: 28px;
    }

    .hero-section__badge-text {
        font-size: 10px;
        line-height: 11px;
    }

    .hero-section__badge-star {
        top: -13px;
    }

    .hero-section::before,
    .hero-section::after {
        background-image: radial-gradient(rgba(255, 1, 143, 0.6) 1px, transparent 1px);
        background-size: 20px 20px;
    }

    .hero-section::after {
        background-position: 10px 10px;
    }
}

/* ==========================================================================
   Faixa de texto em loop 
   ========================================================================== */

.marquee-strip {
    overflow: hidden;
    background-color: var(--accent-cream);
    padding: 10px;
}

.marquee-strip--amber-30 {
    background-color: var(--amber-30);
}

.marquee-strip__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 24s linear infinite;
}

.marquee-strip__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 81px;
    padding: 0 81px 0 0;
    margin: 0;
    list-style: none;
}

.marquee-strip__item {
    color: var(--purple-10);
    white-space: nowrap;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-strip__track {
        animation: none;
    }
}

/* ==========================================================================
   O evento 
   ========================================================================== */

.event-overview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-24);
    background-color: var(--amber-20);
    min-height: 908px;
}

.event-overview__row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.event-overview__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-40);
    width: 100%;
    max-width: clamp(413px, calc(413px + (100vw - 1200px) * 0.382), 688px);
}

.event-overview__heading {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
}

.event-overview__eyebrow {
    color: var(--purple-20);
}

.event-overview__title {
    color: var(--pink-20);
}


.event-overview__watermark-wrap {
    display: flex;
    flex: 1 0 0%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-right: var(--space-40);
}

.event-overview__watermark {
    width: 128px;
    height: 128px;
}

.event-overview__items {
    width: 100%;
    max-width: clamp(460px, calc(460px + (100vw - 1200px) * 0.425), 766px);
}

.event-overview__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    gap: 80px 48px;
    width: 100%;
    max-width: 72ch;
    list-style: none;
    margin: 0;
    padding: 0;
}

.event-overview__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-16);
    width: 100%;
    max-width: clamp(193px, calc(193px + (100vw - 1200px) * 0.178), 321px);
}


.event-overview__icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

    .event-overview__icon img {
        display: block;
        width: 100%;
        height: 100%;
    }

@media (max-width: 1200px) {
    .event-overview__title {
        font-size: 72px;
    }

    .event-overview__watermark {
        width: 100%;
        height: auto;
    }

}

@media (max-width: 998px) {

    .event-overview {
        padding: var(--space-40) var(--space-24);
    }

    .event-overview__row {
        flex-direction: column;
        gap: var(--space-40);
        text-align: center;
    }

    .event-overview__info {
        align-items: center;
        max-width: 100%;
    }

    .event-overview__watermark-wrap {
        flex: 0 0 auto;
        padding-right: 0;
    }

    .event-overview__watermark {
        width: 80px;
        height: 80px;
    }

    .event-overview__items {
       max-width: 100%;
    }

    .event-overview__list {
        justify-content: center;
        max-width: 100%;
        gap: 24px;
    }

    .event-overview__item {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .event-overview__title {
        font-size: 44px;
    }

    .event-overview__watermark-wrap {
        display: none;
    }

    .event-overview__item {
        max-width: 45%;
    }
}

/* ==========================================================================
   O que e NRF
   ========================================================================== */

.about-nrf {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-24);
    min-height: 720px;
    padding: var(--space-32) var(--space-24);
    overflow: hidden;
    background-color: var(--accent-cyan);
}

.about-nrf__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-nrf__bg-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(138.63deg, rgba(0, 0, 0, 0) 47.75%, rgba(0, 0, 0, 0.7) 72.02%);
}

.about-nrf__title-group {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-24);
}

.about-nrf__eyebrow {
    color: var(--white);
}

.about-nrf__brand {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 240px;
    line-height: 0.8;
    color: var(--pink-20);
}

.about-nrf__description-group {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-100);
    text-align: right;
}

.about-nrf__text {
    color: var(--white);
    max-width: 31ch;
    text-align: left;
}

.about-nrf__highlight {
    color: var(--accent-cream);
    max-width: 31ch;
    text-align: left;
}

@media (max-width: 1200px) {
    .about-nrf__brand {
        font-size: 160px;
    }

    .about-nrf__highlight {
        font-size: 40px;
    }
}

@media (max-width: 998px) {
    .about-nrf {
        flex-direction: column;
        align-items: flex-start;
        min-height: 90vh;
    }

    .about-nrf__bg {
        background-position: 40%;
    }

    .about-nrf__bg-overlay {
        background-image: linear-gradient(175deg, rgba(0, 0, 0, 0) 20.75%, rgba(0, 0, 0, 0.7) 69.02%);
    }

    .about-nrf__title-group,
    .about-nrf__description-group {
        align-items: center;
        text-align: center;
    }

    .about-nrf__description-group {
        gap: var(--space-24);
    }

    .about-nrf__text,
    .about-nrf__highlight {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .about-nrf__brand {
        font-size: 96px;
    }

    .about-nrf__highlight {
        font-size: 32px;
    }
}

/* ==========================================================================
   Ministrantes 
   ========================================================================== */

.speakers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-120);
    padding: var(--space-120) var(--space-24);
    background-color: var(--purple-10);
}

.speakers__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-24);
    width: 100%;
}

.speakers__heading-text {
    display: flex;
    align-items: center;
    gap: var(--space-24);
}

.speakers__eyebrow {
    color: var(--accent-cream);
    white-space: nowrap;
}

.speakers__title {
    color: var(--pink-20);
    max-width: 24ch;
}

.speakers__cta {
    color: var(--accent-cream);
    padding: var(--space-12) var(--space-24);
    border-radius: var(--space-32);
    white-space: nowrap;
}

.speakers__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-32);
    width: 100%;
    max-width: min(1872px, calc(100vw - 48px));
}

.speakers__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 444 / 566;
    padding: var(--space-16);
    overflow: hidden;
    background-color: #201825;
}

.speakers__card-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.speakers__card:hover .speakers__card-img {
    transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
    .speakers__card-img {
        transition: none;
    }
}

.speakers__card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.7) 100%);
}

.speakers__card-name {
    position: relative;
    z-index: 2;
    color: var(--accent-cream);
}

@media (max-width: 1200px) {
    .speakers__eyebrow {
        font-size: 64px;
    }

    .speakers__title {
        font-size: 32px;
    }
}

@media (max-width: 998px) {
    .speakers__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .speakers__heading-text {
        flex-direction: column;
        gap: var(--space-8);
    }

    .speakers__title {
        max-width: 100%;
    }

    .speakers__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .speakers {
        padding: var(--space-64) var(--space-16);
        gap: var(--space-64);
    }

    .speakers__eyebrow {
        font-size: 44px;
    }

    .speakers__title {
        font-size: 24px;
    }

    .speakers__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   O que voce leva 
   ========================================================================== */

.what-you-get {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-48);
    padding: var(--space-100) var(--space-24);
    background-color: var(--pink-30);
}

.what-you-get__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-24);
    width: 100%;
    max-width: min(1872px, calc(100vw - 48px));
}

.what-you-get__heading-text {
    display: flex;
    align-items: center;
    gap: var(--space-24);
}

.what-you-get__eyebrow {
    white-space: nowrap;
}

.what-you-get__title {
    color: var(--accent-cream);
    max-width: 12ch;
}

.what-you-get__body {
    display: flex;
    align-items: center;
    gap: var(--space-64);
    width: 100%;
    max-width: min(1872px, calc(100vw - 48px));
}

.what-you-get__media {
    flex: 1 0 0%;
    display: flex;
    align-items: center;
}

.what-you-get__media-img {
    display: block;
    width: 100%;
    max-width: clamp(415px, calc(415px + (100vw - 1200px) * 0.383), 691px);
    aspect-ratio: 691 / 512;
    object-fit: cover;
}

.what-you-get__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
    width: 100%;
    max-width: clamp(555px, calc(555px + (100vw - 1200px) * 0.513), 924px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.what-you-get__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-16);
}

.what-you-get__item-title {
    white-space: nowrap;
}

.what-you-get__item-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.what-you-get__item-description {
    flex: 1 0 240px;
    max-width: 33ch;
}

@media (max-width: 1400px) {

    .what-you-get__item-description {
        max-width: 23ch;
    }
}

@media (max-width: 1200px) {
    .what-you-get__eyebrow {
        font-size: 64px;
    }

    .what-you-get__title {
        font-size: 32px;
    }

    .what-you-get__item-title {
        font-size: 32px;
    }
}

@media (max-width: 998px) {
    .what-you-get__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .what-you-get__heading-text {
        flex-direction: column;
        gap: var(--space-8);
    }

    .what-you-get__title {
        max-width: 100%;
    }

    .what-you-get__body {
        flex-direction: column;
    }

    .what-you-get__media-img {
        max-width: 100%;
    }

    .what-you-get__list {
        max-width: 100%;
    }

    .what-you-get__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .what-you-get__item-description {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .what-you-get__item-icon {
        transform: rotate(45deg);
    }
}

@media (max-width: 600px) {
    .what-you-get {
        padding: var(--space-64) var(--space-16);
        gap: var(--space-32);
    }

    .what-you-get__eyebrow {
        font-size: 44px;
    }

    .what-you-get__title {
        font-size: 24px;
    }

    .what-you-get__item-title {
        font-size: 24px;
    }
}

/* ==========================================================================
   Programacao do evento 
   ========================================================================== */

.schedule {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-80);
    padding: var(--space-160) var(--space-24);
    background-color: var(--purple-10);
    background-image: radial-gradient(rgba(255, 1, 143, 0.6) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}

.schedule__title {
    color: var(--accent-cream);
    text-align: center;
}

.schedule__legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-32);
}

.schedule__legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-16);
}

.schedule__legend-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.schedule__legend-label {
    color: var(--pink-30);
    white-space: nowrap;
}

.schedule__day {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: min(1290px, calc(100vw - 48px));
}

.schedule__date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-16);
    width: 100%;
    padding: var(--space-12) var(--space-16);
    color: var(--accent-cream);
    background-color: var(--purple-10);
}

.schedule__row {
    display: flex;
    align-items: center;
    gap: var(--space-24);
    width: 100%;
    min-height: 82px;
    padding: var(--space-16);
    background-color: var(--accent-cream);
}

.schedule__day--amber .schedule__row:nth-child(even) {
    background-color: var(--amber-40);
}

.schedule__day--cyan .schedule__row:nth-child(even) {
    background-color: var(--accent-cyan);
}

.schedule__time {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 134px;
    padding: var(--space-8) 0;
    color: var(--purple-20);
    font-weight: 700;
    text-align: center;
    background-color: var(--pink-30);
}

.schedule__content {
    display: flex;
    flex-direction: column;
    flex: 1 0 0%;
    min-width: 0;
    gap: var(--space-4);
}

.schedule__row-title {
    color: var(--purple-20);
}

.schedule__description {
    color: var(--purple-20);
    font-weight: 600;
}

.schedule__speaker {
    flex-shrink: 0;
    min-width: 120px;
    text-align: right;
}

@media (max-width: 1200px) {
    .schedule__title {
        font-size: 64px;
    }

    .schedule__date {
        font-size: 32px;
    }

    .schedule__row-title {
        font-size: 32px;
    }
}

@media (max-width: 998px) {
    .schedule__row {
        flex-wrap: wrap;
    }

    .schedule__date {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .schedule__speaker {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .schedule {
        padding: var(--space-64) var(--space-16);
        gap: var(--space-48);
    }

    .schedule__title {
        font-size: 44px;
    }

    .schedule__date {
        font-size: 24px;
        padding: var(--space-12);
    }

    .schedule__row-title {
        font-size: 24px;
    }

    .schedule__time {
        width: 110px;
        font-size: 14px;
    }
}

/* ==========================================================================
   Expositores
   ========================================================================== */

.exhibitors {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-56);
    padding: var(--space-40) var(--space-24);
    background-color: var(--white);
}

.exhibitors__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-32);
    width: 100%;
    max-width: min(1872px, calc(100vw - 48px));
}

.exhibitors__title {
    flex-shrink: 0;
    color: var(--black-90);
    white-space: nowrap;
}

.exhibitors__carousel {
    flex: 1 0 0%;
    min-width: 0;
}

.exhibitors__card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 169px;
    height: 85px;
}

.exhibitors__logo {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 998px) {
    .exhibitors__row {
        flex-direction: column;
        gap: var(--space-24);
    }
}

@media (max-width: 600px) {
    .exhibitors {
        padding: var(--space-32) var(--space-16);
        gap: var(--space-32);
    }

    .exhibitors__title {
        font-size: 44px;
    }

    .exhibitors__card {
        width: 120px;
        height: 60px;
    }
}

/* ==========================================================================
   Local do evento 
   ========================================================================== */

.venue {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-120) var(--space-24);
    background-color: var(--amber-20);
}

.venue__row {
    display: flex;
    align-items: center;
    gap: var(--space-40);
    width: 100%;
    max-width: min(1872px, calc(100vw - 48px));
}

.venue__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0%;
    gap: var(--space-16);
}

.venue__heading {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    width: 100%;
    max-width: clamp(380px, calc(380px + (100vw - 1200px) * 0.263), 569px);
}

.venue__eyebrow {
    color: var(--pink-20);
}

.button.venue__cta {
    color: var(--purple-10);
    border-color: var(--purple-10);
}

.venue__media {
    flex-shrink: 0;
    width: 100%;
    max-width: clamp(442px, calc(442px + (100vw - 1200px) * 0.41), 737px);
}

.venue__media-img {
    display: block;
    width: 100%;
    aspect-ratio: 737 / 405;
    object-fit: cover;
    object-position: bottom;
}

@media (max-width: 1200px) {
    .venue__title {
        font-size: 64px;
    }

    .venue__eyebrow {
        font-size: 36px;
    }
}

@media (max-width: 998px) {
    .venue__row {
        flex-direction: column;
        text-align: center;
    }

    .venue__info {
        align-items: center;
    }

    .venue__heading {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .venue {
        padding: var(--space-64) var(--space-16);
    }

    .venue__title {
        font-size: 44px;
    }

    .venue__eyebrow {
        font-size: 28px;
    }
}

/* ==========================================================================
   FAQ 
   ========================================================================== */

.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-40) var(--space-24) var(--space-80);
    background-color: var(--amber-20);
}

.faq__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-40);
    width: 100%;
    max-width: min(1872px, calc(100vw - 48px));
}

.faq__heading {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    flex-shrink: 0;
    width: 100%;
    max-width: clamp(298px, calc(298px + (100vw - 1200px) * 0.207), 447px);
}

.faq__eyebrow {
    color: var(--pink-20);
}

.faq__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: clamp(649px, calc(649px + (100vw - 1200px) * 0.601), 1082px);
}

.faq__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    padding: var(--space-32) 0;
    border-bottom: 1px solid var(--purple-10);
}

    .faq__item:last-child {
        border-bottom: none;
    }

@media (max-width: 1200px) {
    .faq__title {
        font-size: 64px;
    }

    .faq__eyebrow {
        font-size: 36px;
    }

    .faq__question {
        font-size: 32px;
    }
}

@media (max-width: 998px) {
    .faq__row {
        flex-direction: column;
    }

    .faq__heading {
        max-width: 100%;
    }

    .faq__list {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .faq {
        padding: var(--space-32) var(--space-16) var(--space-64);
    }

    .faq__title {
        font-size: 44px;
    }

    .faq__eyebrow {
        font-size: 28px;
    }

    .faq__question {
        font-size: 24px;
    }
}

/* ==========================================================================
   Cards de ingresso  
   ========================================================================== */

.tickets {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: var(--space-24);
    margin-bottom: var(--space-40);
    margin-top: var(--space-32);
}

.tickets__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-8);
    flex: 1 1 280px;
    min-width: 0;
    padding: var(--space-24) var(--space-24) var(--space-24) var(--space-40);
    border-left: 12px solid var(--pink-20);
    border-radius: var(--space-6);
    text-transform: uppercase;
}

.tickets__card--amber {
    flex: 0 1 556px;
    background-color: var(--amber-20);
}

.tickets__card--pink {
    background-color: var(--pink-30);
}

.tickets__card--cyan {
    background-color: var(--accent-cyan);
}

.tickets__eyebrow,
.tickets__title,
.tickets__subtitle {
    color: var(--purple-10);
}

.tickets__divider {
    width: 100%;
    padding-top: var(--space-16);
    border-top: 2px solid var(--purple-10);
}

.tickets__cta {
    color: var(--accent-cream);
    padding: var(--space-12) var(--space-24);
    border-radius: var(--space-32);
    background-color: var(--purple-10);
}

@media (max-width: 1399px) {
    .tickets__card--amber {
        flex: 1 1 100%;
    }

    .tickets__card--pink,
    .tickets__card--cyan {
        flex: 1 1 0%;
    }
}

@media (max-width: 1200px) {
    .tickets__title {
        font-size: 52px;
    }
}

@media (max-width: 600px) {
    .tickets__card,
    .tickets__card--amber {
        flex: 1 1 100%;
    }

    .tickets__title {
        font-size: 44px;
    }
}

.section-valores .schedule__title {
    margin-bottom: var(--space-56);
}

.section-valores img.img-fluid.icon {
    display: none;
}

@media (max-width: 1200px) {
    .section-valores img.img-fluid.icon {
        display: inline-block;
        width: 47px;
    }
}
