:root {
    --bg: #05060f;
    --surface: rgba(13, 16, 30, 0.88);
    --surface-strong: #10182b;
    --text: #f6f7fb;
    --muted: #bfc5d6;
    --line: rgba(255, 255, 255, 0.14);
    --accent: #ff6a3d;
    --accent-2: #ffd166;
    --accent-3: #2d5bff;
    --success: #32d296;
    --danger: #ff5d73;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Barlow", sans-serif;
    background: radial-gradient(circle at top left, rgba(255, 106, 61, 0.3), transparent 28%), radial-gradient(circle at top right, rgba(45, 91, 255, 0.22), transparent 26%), linear-gradient(180deg, #04050c 0%, #060813 45%, #0a0f1a 100%);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: #024ddf;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    padding-left: 50px;
}

.brand img {
    width: 150px;
    height: 50px;
}

.brand--footer {
    margin-bottom: 0.75rem;
}

.topnav {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
    padding-right: 50px;
    font-family: sans-serif;
}

.topnav a {
    position: relative;
}

.topnav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 2px;
    background: var(--text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.topnav a:hover::after {
    transform: scaleX(1);
}

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
}

.artist-carousel {
    padding: 3.5rem 0 5rem;
    background: #02030a;
}

.artist-carousel__shell {
    width: min(1440px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 1rem;
}

.artist-carousel__viewport {
    overflow: hidden;
}

.artist-carousel__track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.artist-slide {
    min-width: 100%;
    min-height: 490px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    background: #05060f;
}

.artist-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-carousel__arrow {
    width: 72px;
    height: 72px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
}

.artist-carousel__arrow span {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 22px;
    height: 22px;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.artist-carousel__arrow--prev span {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.artist-carousel__arrow--next span {
    transform: translate(-65%, -50%) rotate(45deg);
}

.artist-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.artist-carousel__dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.artist-carousel__dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

@media (max-width: 980px) {
    .artist-carousel__shell {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        gap: 0.4rem;
    }
    .artist-slide {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .artist-carousel {
        padding: 1.2rem 0 2.4rem;
    }
    .artist-carousel__shell {
        width: calc(100% - 1rem);
        grid-template-columns: 1fr;
    }
    .artist-carousel__arrow {
        display: none;
    }
    .artist-slide {
        min-height: 200px;
    }
}

.site-footer {
    background: #20272e;
    color: #fff;
}

.info-page {
    background: #f7f7f7;
    color: #1f2430;
    padding: 0 0 4rem;
    box-shadow: inset 0 10px 18px rgba(0, 0, 0, 0.04);
}

.info-page__wrap {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.info-page__tab {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: #1552d6;
    color: #fff;
    text-align: center;
    font-weight: 700;
    border-radius: 0.2rem;
    box-shadow: 0 8px 20px rgba(21, 82, 214, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.info-page__tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(21, 82, 214, 0.22);
    opacity: 0.96;
}

.info-page__content {
    width: min(930px, 100%);
    margin: 0 auto;
    padding: 2rem 0 0;
}

.info-block+.info-block {
    margin-top: 2.5rem;
}

.info-block h2 {
    margin: 0 0 0.4rem;
    font-size: 1.9rem;
    color: #161c28;
}

.info-block p {
    margin: 0 0 0.55rem;
    font-size: 1.18rem;
    line-height: 1.45;
    color: #374151;
}

.info-block a {
    color: #1552d6;
    text-decoration: underline;
}

.info-block__highlight {
    margin-top: 1rem;
    font-weight: 800;
    color: #0f1726;
}

.ticket-table {
    display: flex;
    justify-content: center;
    margin-top: 1.8rem;
}

.ticket-table table {
    border-collapse: collapse;
    background: #fff;
    min-width: min(100%, 520px);
}

.ticket-table th,
.ticket-table td {
    border: 1px solid #8f95a0;
    padding: 0.3rem 0.45rem;
    font-size: 1rem;
    text-align: left;
    color: #374151;
}

.ticket-table th {
    color: #2b3340;
    font-weight: 800;
    background: #f7f7f7;
}

.site-footer__main {
    width: min(1330px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0 4.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.site-footer__column h3 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
    font-weight: 700;
}

.site-footer__column a,
.site-footer__legal a,
.site-footer__locale-inner a {
    color: rgba(255, 255, 255, 0.96);
    transition: opacity 0.2s ease;
}

.site-footer__column a:hover,
.site-footer__legal a:hover,
.site-footer__locale-inner a:hover {
    opacity: 0.72;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    margin-top: 4rem;
}

.site-footer__brand-block {
    display: grid;
    gap: 1.75rem;
}

.site-footer__brand {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.05em;
    text-transform: lowercase;
}

.site-footer__brand span {
    font-size: 0.38em;
    vertical-align: top;
    margin-left: 0.18rem;
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.site-footer__legal {
    max-width: 420px;
    text-align: right;
    font-size: 0.92rem;
    line-height: 1.8;
}

.site-footer__legal a {
    color: #cfe87b;
    font-weight: 700;
}

.site-footer__legal p {
    margin: 0;
}

.site-footer__locale-bar {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__locale-inner {
    width: min(1330px, calc(100% - 2rem));
    margin: 0 auto;
    min-height: 68px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.25rem;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__globe {
    font-size: 1.1rem;
}

.site-footer__locale-inner a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__locale-inner a.is-active {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.18rem;
}

@media (max-width: 980px) {
    .info-page__content {
        width: 100%;
    }
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-footer__legal {
        max-width: none;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .info-page {
        padding-bottom: 3rem;
    }
    .info-page__tab {
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }
    .info-page__content {
        padding-top: 1rem;
    }
    .info-block h2 {
        font-size: 1.45rem;
    }
    .info-block p {
        font-size: 1rem;
    }
    .ticket-table {
        overflow-x: auto;
        justify-content: flex-start;
    }
    .ticket-table table {
        min-width: 520px;
    }
    .site-footer__main {
        padding: 2.5rem 0 3rem;
    }
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .site-footer__bottom {
        margin-top: 2.5rem;
        gap: 2rem;
    }
    .site-footer__socials {
        gap: 0.75rem;
    }
    .site-footer__locale-inner {
        min-height: 58px;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        padding: 0.8rem 0;
    }
}

#logodias {
    margin: 0 auto;
    width: 60%;
    height: auto;
}

.selection-body {
    margin: 0;
    background: #dde3ee;
    color: #121826;
    font-family: "Barlow", sans-serif;
}

.selection-header {
    background: #1150d5;
    color: #fff;
}

.selection-header__top,
.selection-header__event,
.selection-layout {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
}

.selection-header__top {
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selection-header__brand img {
    width: 140px;
    height: auto;
}

.selection-header__nav {
    display: flex;
    gap: 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.selection-header__event {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.selection-header__badge {
    width: 42px;
    height: 42px;
    border-radius: 0.8rem;
    background: radial-gradient(circle at 35% 35%, #9d6bff, transparent 35%), linear-gradient(135deg, #041125, #28005a 60%, #122eff);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
    position: relative;
}

.selection-header__badge::after {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.selection-header__event span {
    font-size: 1.1rem;
    font-weight: 500;
}

.selection-layout {
    display: grid;
    grid-template-columns: minmax(0, 780px) 380px;
    gap: 2.5rem;
    padding: 3.25rem 0 4rem;
}

.selection-main h1 {
    margin: 0 0 2.25rem;
    font-size: 2.1rem;
    font-weight: 500;
    color: #111827;
}

.selection-days {
    display: grid;
    gap: 0.5rem;
}

.selection-day {
    background: #fff;
    border-radius: 0.2rem;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(15, 23, 38, 0.04);
}

.selection-day__toggle {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 1.4rem 1.35rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
}

.selection-day__date {
    font-size: 1.1rem;
    font-weight: 800;
    color: #101828;
}

.selection-day__artist {
    color: #737680;
    font-size: 1rem;
}

.selection-day__chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid #a7a7a7;
    border-bottom: 2px solid #a7a7a7;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.selection-day.is-open .selection-day__chevron {
    transform: rotate(-135deg);
    border-color: #1150d5;
}

.selection-day__panel {
    display: none;
    background: #fff;
    border-top: 1px solid #eef1f6;
}

.selection-day.is-open .selection-day__panel {
    display: block;
}

.ticket-group__title {
    padding: 1rem 1.35rem;
    background: #eef3fb;
    color: #0d54e8;
    font-size: 0.98rem;
    font-weight: 500;
}

.ticket-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px 185px;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.35rem;
}

.ticket-row+.ticket-row {
    border-top: 1px solid #edf0f5;
}

.ticket-row__name {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1rem;
    font-weight: 700;
    color: #161c28;
}

.ticket-row__info {
    width: 15px;
    height: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: #87a7f5;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.ticket-row__price {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

.ticket-row__stepper {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
    background: #f7f8fa;
    border-radius: 0.25rem;
    min-height: 50px;
}

.ticket-row__action {
    border: 0;
    background: transparent;
    color: #1150e4;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.ticket-row__count {
    text-align: center;
    font-size: 1rem;
    color: #1f2937;
}

.selection-summary {
    align-self: start;
    background: #fff;
    border-radius: 0.2rem;
    overflow: hidden;
}

.selection-sidebar {
    align-self: start;
}

.selection-summary__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.3rem 1.4rem;
}

.selection-summary h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

.selection-summary__clear {
    border: 0;
    background: transparent;
    color: #1150d5;
    font-size: 0.86rem;
    text-decoration: underline;
    cursor: pointer;
}

.selection-summary__list {
    min-height: 140px;
    padding: 0 1.3rem 1rem;
    border-top: 1px solid #edf0f5;
}

.selection-summary__empty {
    margin: 0;
    color: #7b8190;
    font-size: 0.95rem;
}

.selection-summary__item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-top: 1px solid #edf0f5;
}

.selection-summary__item:first-child {
    border-top: 0;
}

.selection-summary__item div {
    display: grid;
    gap: 0.15rem;
}

.selection-summary__item span {
    color: #5f6778;
    font-size: 0.84rem;
}

.selection-summary__footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1.3rem;
    border-top: 1px solid #edf0f5;
}

.selection-summary__quantity {
    min-width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.2rem;
    background: #f3f6fb;
    color: #1150e4;
    font-weight: 800;
}

.selection-summary__actions {
    margin-top: 1rem;
    background-color: red;
}

.selection-summary__continue {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 0.2rem;
    background: #1552d6;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.selection-summary__continue:hover {
    background: #0f47bf;
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .selection-layout {
        grid-template-columns: 1fr;
    }
    .selection-summary {
        max-width: 520px;
    }
}

@media (max-width: 720px) {
    .selection-header__top,
    .selection-header__event,
    .selection-layout {
        width: calc(100% - 1rem);
    }
    .selection-header__top {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.85rem 0;
    }
    .selection-header__nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .selection-layout {
        padding: 2rem 0 3rem;
    }
    .selection-day__toggle {
        grid-template-columns: 1fr auto;
    }
    .selection-day__artist {
        grid-column: 1 / 2;
    }
    .ticket-row {
        grid-template-columns: 1fr;
    }
    .ticket-row__stepper {
        width: 100%;
    }
}

.payment-layout {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    padding: 3rem 0 4rem;
}

.payment-card {
    background: #fff;
    border-radius: 0.2rem;
    padding: 1.5rem;
    box-shadow: 0 1px 0 rgba(15, 23, 38, 0.04);
}

.payment-card+.payment-card {
    margin-top: 1rem;
}

.payment-card__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1150d5;
    font-weight: 700;
}

.payment-card h1,
.payment-card h2 {
    margin: 0 0 1rem;
    color: #111827;
}

.payment-card__lead {
    margin: 0;
    color: #5f6778;
    line-height: 1.6;
}

.payment-form {
    margin-top: 1rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.payment-grid label {
    display: grid;
    gap: 0.45rem;
    font-weight: 600;
    color: #111827;
}

.payment-grid input,
.payment-grid select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d4d9e3;
    border-radius: 0.2rem;
    padding: 0.85rem 1rem;
    background: #fff;
    color: #111827;
    font: inherit;
}

.payment-field-error {
    border-color: #d92d20 !important;
    box-shadow: 0 0 0 1px #d92d20 inset;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-method {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid #d4d9e3;
    border-radius: 0.2rem;
    background: #fff;
}

.payment-submit {
    display: grid;
    gap: 0.75rem;
}

.payment-submit__button {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 0.2rem;
    background: #1552d6;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.payment-submit__status {
    margin: 0;
    color: #4b5563;
    min-height: 1.25rem;
}

.payment-submit__status--info {
    color: #1d4ed8;
}

.payment-submit__status--success {
    color: #15803d;
}

.payment-submit__status--error {
    color: #b42318;
}

.payment-submit__button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.payment-pix-result__lead {
    margin: 0 0 1rem;
    color: #4b5563;
}

.payment-pix-result__content {
    display: grid;
    gap: 1rem;
}

.payment-pix-result__image {
    width: min(100%, 280px);
    padding: 0.75rem;
    border: 1px solid #d4d9e3;
    border-radius: 0.2rem;
    background: #fff;
}

.payment-pix-result__field {
    display: grid;
    gap: 0.45rem;
    font-weight: 600;
    color: #111827;
}

.payment-pix-result__field textarea {
    width: 100%;
    min-height: 120px;
    resize: vertical;
    border: 1px solid #d4d9e3;
    border-radius: 0.2rem;
    padding: 0.85rem 1rem;
    background: #fff;
    color: #111827;
    font: inherit;
    line-height: 1.5;
}

.payment-pix-result__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-pix-result__copy {
    min-height: 46px;
    padding: 0 1rem;
    border: 1px solid #1552d6;
    border-radius: 0.2rem;
    background: #fff;
    color: #1552d6;
    font-weight: 700;
    cursor: pointer;
}

.payment-pix-result__expires {
    color: #4b5563;
    font-size: 0.95rem;
}

.payment-pix-result__timer {
    padding: 0.85rem 1rem;
    border-radius: 0.2rem;
    background: #eef4ff;
    color: #1552d6;
    font-weight: 700;
}

.payment-modal-open {
    overflow: hidden;
}

.payment-success-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.payment-success-modal[hidden] {
    display: none !important;
}

.payment-success-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.payment-success-modal__dialog {
    position: relative;
    width: min(100%, 480px);
    padding: 2rem;
    border-radius: 0.6rem;
    background: #fff;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.25);
    text-align: center;
}

.payment-success-modal__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    font-size: 2rem;
    font-weight: 800;
}

.payment-success-modal__dialog h2 {
    margin: 0 0 0.75rem;
    color: #111827;
}

.payment-success-modal__dialog p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.payment-success-modal__button {
    width: 100%;
    min-height: 50px;
    margin-top: 1.5rem;
    border: 0;
    border-radius: 0.3rem;
    background: #1552d6;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 980px) {
    .payment-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .payment-layout {
        width: calc(100% - 1rem);
        padding: 2rem 0 3rem;
    }
    .payment-grid {
        grid-template-columns: 1fr;
    }
    .payment-methods {
        flex-direction: column;
    }
}

.donation-layout {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    padding: 3rem 0 4rem;
}

.donation-main h1 {
    margin: 0 0 2rem;
    font-size: 2rem;
    font-weight: 500;
    color: #111827;
}

.donation-list {
    display: grid;
    gap: 0.9rem;
}

.donation-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 0.2rem;
}

.donation-card__logo {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    border-radius: 0.25rem;
    color: #fff;
}

.donation-card__logo--isa {
    background: #b83a17;
}

.donation-card__logo--acao {
    background: #ff3131;
}

.donation-card__logo--falcoes {
    background: #111;
}

.donation-card__content h2 {
    margin: 0 0 0.75rem;
    color: #111827;
}

.donation-card__content p {
    margin: 0 0 1rem;
    color: #5f6778;
    line-height: 1.6;
}

.donation-card__content a {
    display: inline-block;
    margin-bottom: 1rem;
    color: #1150d5;
    text-decoration: underline;
    font-weight: 700;
}

.donation-card__amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.donation-card__amounts button {
    min-width: 74px;
    min-height: 40px;
    border: 1px solid #d6dbe5;
    background: #fff;
    color: #1f2937;
    border-radius: 0.2rem;
    cursor: pointer;
}

.donation-card__amounts button.is-active {
    background: #1552d6;
    color: #fff;
    border-color: #1552d6;
}

.donation-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.donation-actions__skip,
.donation-actions__continue {
    min-height: 50px;
    border-radius: 0.2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.donation-actions__skip {
    border: 1px solid #d6dbe5;
    background: #fff;
    color: #1552d6;
}

.donation-actions__continue {
    border: 0;
    background: #1552d6;
    color: #fff;
}

@media (max-width: 980px) {
    .donation-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .donation-layout {
        width: calc(100% - 1rem);
        padding: 2rem 0 3rem;
    }
    .donation-card {
        grid-template-columns: 1fr;
    }
    .donation-actions {
        grid-template-columns: 1fr;
    }
}

.insurance-layout {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    padding: 3rem 0 4rem;
}

.insurance-main h1 {
    margin: 0 0 2rem;
    font-size: 1.95rem;
    font-weight: 500;
    color: #111827;
    max-width: 900px;
}

.insurance-options {
    display: grid;
    gap: 0.9rem;
}

.insurance-option {
    width: 100%;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.4rem 1.25rem;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 0.2rem;
    text-align: left;
    cursor: pointer;
}

.insurance-option.is-active {
    border-color: #1552d6;
    box-shadow: 0 0 0 1px #1552d6 inset;
}

.insurance-option__selector {
    width: 24px;
    height: 24px;
    margin-top: 0.15rem;
    border: 1px solid #bdd0ef;
    border-radius: 50%;
    position: relative;
}

.insurance-option.is-active .insurance-option__selector::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #1552d6;
}

.insurance-option__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.insurance-option__header strong {
    color: #111827;
    font-size: 1.05rem;
    line-height: 1.45;
}

.insurance-option__header span {
    color: #5cb85c;
    font-size: 1.05rem;
    white-space: nowrap;
}

.insurance-option:last-child .insurance-option__header span {
    color: #9ca3af;
}

.insurance-option__content p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.insurance-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.insurance-actions .donation-actions__continue {
    width: min(100%, 380px);
    min-height: 58px;
}

@media (max-width: 980px) {
    .insurance-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .insurance-layout {
        width: calc(100% - 1rem);
        padding: 2rem 0 3rem;
    }
    .insurance-option {
        grid-template-columns: 1fr;
    }
    .insurance-option__selector {
        margin-top: 0;
    }
    .insurance-option__header {
        flex-direction: column;
    }
}

.terms-layout {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    padding: 3rem 0 4rem;
}

.terms-main h1 {
    margin: 0 0 2rem;
    font-size: 1.95rem;
    font-weight: 500;
    color: #111827;
}

.terms-card {
    background: #fff;
    border-radius: 0.2rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    padding: 1rem;
}

.terms-card__content {
    max-height: 320px;
    overflow-y: auto;
    padding: 1rem 1.1rem;
    color: #374151;
    line-height: 1.65;
}

.terms-card__content p {
    margin: 0 0 1rem;
}

.terms-card__content a {
    color: #1552d6;
    text-decoration: none;
}

.terms-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.terms-actions__accept {
    width: min(100%, 380px);
    min-height: 58px;
}

@media (max-width: 980px) {
    .terms-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .terms-layout {
        width: calc(100% - 1rem);
        padding: 2rem 0 3rem;
    }
}