* {
    box-sizing: border-box;
}

:root {
    --bg: #020814;
    --bg-2: #061426;
    --card: #07111f;
    --card-2: #08203d;
    --gold: #d89422;
    --gold-light: #f5c46b;
    --white: #ffffff;
    --muted: #cbd5e1;
    --muted-2: #94a3b8;
    --danger: #dc2626;
    --success: #22c55e;
    --warning: #facc15;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top, #0b2c61 0%, #04152d 42%, #020814 100%);
    color: var(--white);
    font-family: Georgia, 'Times New Roman', serif;
    overflow-x: hidden;
}

h1 {
    color: var(--gold);
    font-size: 34px;
    margin: 0 0 8px;
}

h2 {
    color: var(--gold-light);
}

.subtitle {
    color: var(--muted);
    margin-bottom: 25px;
}

.hidden {
    display: none !important;
}

/* LOGIN */

.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 92%;
    max-width: 460px;
    padding: 38px;
    margin: auto;
    background: rgba(2, 8, 20, .96);
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(216, 148, 34, .35);
    text-align: center;
    border-radius: 14px;
}

.ornamento {
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 8px;
}

.brasao {
    width: 135px;
    display: block;
    margin: 0 auto 20px;
}

#msg {
    margin-top: 18px;
    color: var(--gold-light);
}

.links {
    margin-top: 20px;
}

.links a {
    color: var(--gold-light);
    cursor: pointer;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

.links span {
    color: var(--white);
    margin: 0 6px;
}

/* FORM */

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    background: var(--bg-2);
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 9px;
    font-size: 15px;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 2px rgba(216, 148, 34, .35);
}

input::placeholder,
textarea::placeholder {
    color: var(--muted);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

button {
    width: 100%;
    padding: 13px;
    margin-top: 6px;
    background: linear-gradient(135deg, #7a4306, var(--gold), var(--gold-light));
    color: var(--bg);
    border: 1px solid var(--gold-light);
    border-radius: 9px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: .4px;
    transition: .15s ease;
}

button:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.btn-danger {
    background: linear-gradient(135deg, #7f1d1d, #dc2626, #f87171);
    color: white;
    border: 1px solid #fca5a5;
}

.btn-success {
    background: linear-gradient(135deg, #15803d, #22c55e);
    color: white;
    border: none;
}

/* DASHBOARD */

.page {
    width: 100%;
    min-height: 100vh;
    display: flex;
}

.sidebar,
.sidebar-v2 {
    width: 290px;
    min-height: 100vh;
    background: rgba(2, 8, 20, .98);
    border-right: 2px solid var(--gold);
    padding: 22px;
    position: sticky;
    top: 0;
    text-align: left;
}

.brand-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(216, 148, 34, .35);
}

.brasao-menu,
.brand-v2 img {
    width: 64px;
}

.brand-v2 h2 {
    margin: 0;
    color: var(--gold);
    font-size: 22px;
}

.brand-v2 span {
    color: var(--muted);
    font-size: 13px;
}

.menu-group {
    margin-bottom: 24px;
}

.menu-group p {
    color: var(--gold-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.menu-group button,
.logout-btn {
    width: 100%;
    text-align: left;
    margin-bottom: 9px;
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(216, 148, 34, .25);
    border-radius: 10px;
    padding: 13px 14px;
}

.menu-group button:hover,
.logout-btn:hover {
    background: rgba(216, 148, 34, .14);
    color: var(--gold-light);
}

.logout-btn {
    margin-top: 20px;
    border-color: rgba(220, 38, 38, .45);
    color: #fecaca;
}

.content {
    flex: 1;
    padding: 36px;
    overflow-x: hidden;
}

.section {
    max-width: 1250px;
    margin: 0 auto;
}

.topbar-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding: 22px 26px;
    background: rgba(2, 8, 20, .72);
    border: 1px solid rgba(216, 148, 34, .35);
    border-radius: 16px;
}

.topbar-v2 p {
    color: var(--muted);
    margin: 6px 0 0;
}

.topbar-actions button {
    min-width: 160px;
}

.section-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.section-header-v2 button {
    max-width: 180px;
}

/* CARDS */

.cards,
.cards-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin: 22px 0 30px;
}

.card,
.event-card {
    background: linear-gradient(180deg, rgba(8, 32, 61, .96), rgba(2, 8, 20, .96));
    border: 1px solid rgba(216, 148, 34, .75);
    padding: 20px;
    margin-bottom: 18px;
    border-radius: 14px;
    box-shadow: 0 0 18px rgba(216, 148, 34, .16);
}

.card h3,
.event-card h3 {
    color: var(--gold);
    margin-top: 0;
}

.card p {
    font-size: 23px;
    font-weight: bold;
    margin: 0;
}

.event-card p {
    color: #e5e7eb;
    line-height: 1.45;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-card span {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(216, 148, 34, .16);
    border: 1px solid rgba(216, 148, 34, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.stat-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
    color: var(--muted);
}

.stat-card p {
    font-size: 25px;
    color: var(--gold-light);
}

/* EVENTOS */

.event-card-v2 {
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(216, 148, 34, .35);
    background: var(--card);
    transition: .25s ease;
}

.event-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 14px;
}

.event-header h2 {
    margin: 0;
    color: var(--gold);
}

.event-header p {
    color: #d1d5db;
    margin: 6px 0;
}

.event-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

.event-info small {
    color: var(--muted-2);
}

.event-info h3 {
    margin: 6px 0;
}

.event-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.event-actions button {
    flex: 1;
    min-width: 130px;
}

.status-visible,
.status-hidden {
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.status-visible {
    background: #14532d;
    color: #bbf7d0;
}

.status-hidden {
    background: #7f1d1d;
    color: #fecaca;
}

/* FORM GRID */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-grid textarea {
    grid-column: span 2;
}

/* STATUS */

.inscrito-box {
    margin-top: 15px;
    padding: 15px;
    border: 1px solid var(--gold);
    background: rgba(216, 148, 34, .12);
    color: #fff;
    border-radius: 10px;
}

.inscrito-box strong {
    color: var(--gold-light);
}

.valor-total {
    margin-top: 10px;
    color: var(--gold-light);
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}

.status-pago {
    color: var(--success);
    font-weight: bold;
}

.status-espera {
    color: var(--warning);
    font-weight: bold;
}

.status-pendente {
    color: #ef4444;
    font-weight: bold;
}

.checkin-bloqueado {
    margin-top: 15px;
    padding: 18px;
    border-radius: 10px;
    background: #2b1b12;
    border: 1px solid var(--gold);
    text-align: center;
}

.checkin-bloqueado strong {
    color: var(--gold-light);
}

.checkin-bloqueado p {
    margin-top: 10px;
    color: #ddd;
}

/* USUÁRIO */

.usuario-page {
    width: 100%;
    max-width: 1150px;
    padding: 38px 20px;
    margin: auto;
}

.usuario-header {
    text-align: center;
    margin-bottom: 35px;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 22px;
}

/* MODAL */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    padding: 20px;
}

.modal-content {
    background: var(--bg-2);
    border: 2px solid var(--gold);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 0 40px rgba(216, 148, 34, .35);
    text-align: center;
    max-width: 700px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-top: 0;
    text-align: center;
    color: var(--gold);
    margin-bottom: 25px;
}

.modal-content img {
    width: 300px;
    max-width: 100%;
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.modal-evento textarea {
    min-height: 120px;
}

/* GRÁFICOS */

canvas {
    background: rgba(2, 8, 20, .55);
    border: 1px solid rgba(216, 148, 34, .35);
    border-radius: 12px;
    padding: 12px;
    margin: 18px 0 28px;
    max-width: 100%;
}

/* LANDING */

.landing-body {
    display: block;
    background:
        radial-gradient(circle at top left, #0b2c61 0%, transparent 35%),
        linear-gradient(135deg, #020814, #061426);
}

.lp-header {
    min-height: 78px;
    padding: 14px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(2, 8, 20, .94);
    border-bottom: 1px solid rgba(216, 148, 34, .45);
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold-light);
    font-weight: bold;
    font-size: 20px;
}

.lp-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.lp-login {
    padding: 11px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7a4306, var(--gold), var(--gold-light));
    color: var(--bg);
    font-weight: bold;
    text-decoration: none;
}

.lp-main {
    max-width: 1180px;
    margin: auto;
    padding: 70px 28px;
}

.lp-hero {
    min-height: 68vh;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: center;
}

.lp-tag {
    display: inline-block;
    color: var(--gold-light);
    border: 1px solid rgba(216, 148, 34, .6);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.lp-text h1 {
    font-size: 56px;
    line-height: 1.05;
    margin: 0 0 22px;
    color: var(--gold);
}

.lp-text p,
.lp-info p,
.lp-card p,
.lp-contact p,
.lp-about p {
    color: var(--muted);
    line-height: 1.7;
}

.lp-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.lp-btn {
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.lp-btn.primary {
    background: linear-gradient(135deg, #7a4306, var(--gold), var(--gold-light));
    color: var(--bg);
}

.lp-btn.outline {
    border: 1px solid var(--gold);
    color: var(--gold-light);
}

.lp-card,
.lp-info,
.lp-about,
.lp-contact > div {
    background: rgba(6, 20, 38, .95);
    border: 1px solid rgba(216, 148, 34, .75);
    border-radius: 16px;
    padding: 26px;
}

.lp-card {
    text-align: center;
    border-width: 2px;
    border-radius: 22px;
    box-shadow: 0 0 45px rgba(216, 148, 34, .25);
}

.lp-card img {
    width: 185px;
    margin-bottom: 20px;
}

.lp-section {
    margin-top: 55px;
}

.lp-section h2 {
    text-align: center;
    color: var(--gold-light);
    margin-bottom: 28px;
}

.lp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lp-info h3,
.lp-contact h3 {
    color: var(--gold);
    margin-top: 0;
}

.lp-about {
    max-width: 850px;
    margin: auto;
}

.lp-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.lp-values div {
    background: rgba(216, 148, 34, .12);
    border: 1px solid rgba(216, 148, 34, .75);
    color: var(--gold-light);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
}

.lp-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .page {
        flex-direction: column;
    }

    .sidebar,
    .sidebar-v2 {
        width: 100%;
        min-height: auto;
        position: relative;
        border-right: none;
        border-bottom: 2px solid var(--gold);
    }

    .brand-v2 {
        justify-content: center;
        text-align: center;
    }

    .menu-group button,
    .logout-btn {
        text-align: center;
    }

    .content {
        padding: 18px 12px;
    }

    .topbar-v2,
    .section-header-v2,
    .event-header {
        flex-direction: column;
        text-align: center;
    }

    .cards,
    .cards-v2,
    .event-info,
    .form-grid,
    .lp-grid,
    .lp-contact {
        grid-template-columns: 1fr;
    }

    .form-grid textarea {
        grid-column: span 1;
    }

    .event-actions {
        flex-direction: column;
    }

    .event-actions button {
        width: 100%;
    }

    .lp-header {
        padding: 14px 18px;
    }

    .lp-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-actions {
        justify-content: center;
        flex-direction: column;
    }

    .lp-text h1 {
        font-size: 38px;
    }
}

@media (max-width: 520px) {
    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 21px;
    }

    .container {
        width: 94%;
        padding: 24px 18px;
    }

    .brasao,
    .brasao-menu {
        width: 95px;
    }

    .card,
    .event-card {
        padding: 16px;
    }

    .stat-card {
        align-items: flex-start;
    }

    .stat-card span {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .stat-card p {
        font-size: 20px;
    }

    input,
    select,
    textarea,
    button {
        font-size: 14px;
    }

    .lp-header {
        flex-direction: column;
        height: auto;
        gap: 12px;
        padding: 14px;
    }

    .lp-brand {
        justify-content: center;
        text-align: center;
    }

    .lp-main {
        padding: 34px 16px;
    }

    .lp-hero {
        min-height: auto;
        gap: 28px;
    }

    .lp-text h1 {
        font-size: 31px;
    }

    .lp-card {
        padding: 24px;
    }

    .lp-card img {
        width: 130px;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
    }
}

/* ÁREA DO USUÁRIO MOBILE 3.0 */

.usuario-mobile-body {
    display: block;
    background:
        radial-gradient(circle at top, #0b2c61 0%, #04152d 45%, #020814 100%);
    font-family: Arial, sans-serif;
}

.app-user {
    width: 100%;
    max-width: 520px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 16px;
}

.user-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    background: rgba(2, 8, 20, .92);
    border: 1px solid rgba(216,148,34,.45);
    border-radius: 18px;
    margin-bottom: 18px;
}

.user-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.user-brand h1 {
    font-size: 20px;
    margin: 0;
    color: #d89422;
}

.user-brand p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #cbd5e1;
}

.user-logout {
    width: auto;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
}

.user-hero {
    padding: 20px 4px;
}

.user-hero span {
    color: #f5c46b;
    font-size: 14px;
}

.user-hero h2 {
    margin: 6px 0;
    color: white;
    font-size: 30px;
}

.user-hero p {
    color: #cbd5e1;
    line-height: 1.5;
    font-size: 15px;
}

.user-events-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.user-events-list .event-card {
    border-radius: 20px;
    padding: 18px;
    margin: 0;
    background: rgba(2, 8, 20, .92);
    border: 1px solid rgba(216,148,34,.55);
}

.user-events-list .event-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.user-events-list .event-card p {
    font-size: 15px;
}

.user-events-list input {
    font-size: 16px;
    border-radius: 12px;
}

.user-events-list button {
    border-radius: 12px;
    padding: 14px;
    margin-top: 10px;
}

.user-events-list .inscrito-box {
    border-radius: 16px;
}

@media (max-width: 520px) {
    .app-user {
        padding: 12px;
    }

    .user-top {
        border-radius: 14px;
        padding: 12px;
    }

    .user-brand img {
        width: 46px;
        height: 46px;
    }

    .user-brand h1 {
        font-size: 18px;
    }

    .user-brand p {
        font-size: 12px;
    }

    .user-hero h2 {
        font-size: 26px;
    }
}

/* USUÁRIO MOBILE CARDS 3.0 */

.user-event-card {
    background: rgba(2, 8, 20, .94);
    border: 1px solid rgba(216, 148, 34, .55);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
}

.user-event-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.user-event-header > span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(216, 148, 34, .16);
    border: 1px solid rgba(216, 148, 34, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.user-event-header h3 {
    margin: 0 0 6px;
    color: #f5c46b;
    font-size: 21px;
}

.user-event-header p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.4;
}

.user-event-meta {
    display: grid;
    gap: 6px;
    margin: 12px 0;
}

.user-event-meta p {
    margin: 0;
    color: #e5e7eb;
    font-size: 14px;
}

.user-event-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 14px 0;
}

.user-event-prices small {
    background: rgba(216,148,34,.10);
    border: 1px solid rgba(216,148,34,.35);
    border-radius: 10px;
    padding: 8px;
    color: #f5c46b;
    text-align: center;
}

.mobile-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mobile-form input {
    margin-bottom: 0;
}

.user-status-box,
.user-total-box {
    margin-top: 14px;
    padding: 14px;
    background: rgba(216,148,34,.10);
    border: 1px solid rgba(216,148,34,.45);
    border-radius: 14px;
}

.user-status-box strong,
.user-total-box small {
    color: #cbd5e1;
}

.user-status-box p {
    margin: 8px 0 0;
    font-weight: bold;
}

.user-total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-total-box strong {
    color: #f5c46b;
    font-size: 22px;
}

.user-details {
    margin-top: 14px;
    border: 1px solid rgba(216,148,34,.35);
    border-radius: 14px;
    padding: 12px;
}

.user-details summary {
    cursor: pointer;
    color: #f5c46b;
    font-weight: bold;
}

.user-details .mobile-form {
    margin-top: 14px;
}

.user-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
}

.user-actions-grid button {
    margin-top: 0;
}

.inscrito-card {
    border-color: rgba(34,197,94,.55);
}

@media (max-width: 420px) {
    .mobile-form,
    .user-event-prices {
        grid-template-columns: 1fr;
    }

    .user-event-card {
        padding: 15px;
        border-radius: 18px;
    }

    .user-total-box {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* TOAST */

#toastContainer{
    position:fixed;
    top:20px;
    right:20px;
    z-index:99999;

    display:flex;
    flex-direction:column;
    gap:12px;
}

.toast{

    min-width:280px;
    max-width:360px;

    padding:16px 18px;

    border-radius:14px;

    color:white;

    font-weight:bold;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

    animation:toastIn .35s ease;

    display:flex;
    align-items:center;
    gap:12px;
}

.toast.success{

    background:#16a34a;

}

.toast.error{

    background:#dc2626;

}

.toast.warning{

    background:#d97706;

}

.toast.info{

    background:#2563eb;

}

@keyframes toastIn{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes toastOut{

    from{

        opacity:1;

        transform:translateX(0);

    }

    to{

        opacity:0;

        transform:translateX(60px);

    }

}

/* MODAL DE CONFIRMAÇÃO */

.confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(6px);
}

.confirm-modal.hidden {
    display: none;
}

.confirm-box {
    width: min(420px, 100%);
    padding: 24px;
    border: 1px solid rgba(216, 148, 34, .55);
    border-radius: 18px;
    background: #061426;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .45);
}

.confirm-box h2 {
    margin: 0 0 12px;
    color: #f5c46b;
}

.confirm-box p {
    margin: 0;
    color: #e5e7eb;
    line-height: 1.6;
}

.confirm-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.confirm-actions button {
    margin: 0;
}

.confirm-cancel {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, .28);
}

.confirm-ok {
    background: linear-gradient(135deg, #991b1b, #dc2626);
    color: white;
    border: 1px solid #f87171;
}

@media (max-width: 480px) {
    .confirm-actions {
        grid-template-columns: 1fr;
    }
}