:root {
    --preto: #050505;
    --dourado: #c9974f;
    --dourado-escuro: #a6762c;
    --creme-claro: #fbf6ec;
    --texto-claro: #ffffff;
    --sombra: 0 14px 35px rgba(0,0,0,0.28);
    --fonte: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--fonte);
    background: #f0f0f0;
}

.age-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-card {
    width: 100%;
    max-width: 900px;
    height: 420px;
    background: #ffffff;
    box-shadow: var(--sombra);
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 55% 45%;
}

/* TOPO PRETO */

.age-header {
    background: var(--preto);
    color: var(--texto-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.age-logo {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* BLOCO DA PERGUNTA */

.age-content {
    position: relative;
    background: var(--creme-claro);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2.3rem;
}

.age-content::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -5%;
    width: 110%;
    height: 60px;
    background: var(--creme-claro);
    border-bottom-left-radius: 60% 100%;
    border-bottom-right-radius: 60% 100%;
}

.age-small {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.age-question {
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
    max-width: 540px;
    margin-bottom: 2rem;
}

/* BOTÕES */

.age-actions {
    position: relative;
    display: flex;
    gap: 1rem;
    z-index: 1;
}

.age-btn {
    min-width: 110px;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.12s ease-out,
        box-shadow 0.12s ease-out,
        background 0.12s ease-out,
        color 0.12s ease-out;
}

.age-btn-yes {
    background: var(--dourado);
    color: var(--texto-claro);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.age-btn-yes:hover {
    transform: translateY(-1px);
    background: var(--dourado-escuro);
    box-shadow: 0 16px 32px rgba(0,0,0,0.3);
}

.age-btn-no {
    background: #d1d1d1;
    color: #222222;
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.age-btn-no:hover {
    background: #bbbbbb;
}

/* RESPONSIVO */

@media (max-width: 720px) {
    .age-card {
        height: auto;
        grid-template-rows: 55% 45%;
    }

    .age-question {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .age-actions {
        flex-direction: column;
        align-items: center;
    }
}
