/* =========================================================
   Guia Jogos — base styles
   Fonts:  Poppins (headings / brand) + Inter (body)
   Theme:  Portuguese dark — green / red / gold
   ========================================================= */

:root {
    /* Backgrounds */
    --color-bg:        #0a201a;   /* dark green base */
    --color-bg-2:      #0e2c23;   /* slightly lighter panel */
    --color-bg-3:      #123529;   /* cards / raised surfaces */

    /* Brand */
    --color-green:      #1a7d43;  /* Portuguese green (logo) */
    --color-green-dark: #0f5a2f;
    --color-red:        #e01b24;  /* Portuguese red (logo) */
    --color-red-dark:   #b3141b;
    --color-gold:       #e6b64c;  /* gold accent */
    --color-gold-dark:  #c9992f;

    /* Text */
    --color-text:        #f4f6f3;
    --color-text-muted:  #b7c4bc;
    --color-text-dim:    #7f8f86;

    /* Lines / borders */
    --color-border:      rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: "Poppins", system-ui, sans-serif;
    --font-body:    "Inter", system-ui, sans-serif;

    /* Layout */
    --container:   1200px;
    --radius:      14px;
    --radius-sm:   8px;

    /* Shadows */
    --shadow:      0 10px 30px rgba(0, 0, 0, 0.35);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image: url("../img/bg-guia.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Top bar — centered logo */
.site-header__top {
    background: linear-gradient(180deg, #0c261e 0%, #081b15 100%);
    border-bottom: 1px solid rgba(230, 182, 76, 0.18);
    box-shadow: var(--shadow);
}

.site-header__top-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.brand {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.brand:hover {
    transform: scale(1.03);
}

.brand__logo {
    height: 46px;
    width: auto;
}

/* Age / responsible-gaming bar */
.age-bar {
    background: linear-gradient(90deg, var(--color-green-dark) 0%, #081b15 45%, #081b15 55%, var(--color-red-dark) 100%);
    border-bottom: 1px solid var(--color-border);
}

.age-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 40px;
    font-size: 0.82rem;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    line-height: 1;
    color: #fff;
    background: var(--color-green);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 4px 8px;
    border-radius: 5px;
}

.age-bar__link {
    font-weight: 600;
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.age-bar__link:hover {
    color: #fff;
}

.age-bar__text {
    color: var(--color-text-muted);
}

/* ---------- Hero ---------- */
.hero {
    padding-block: 28px;
}

.hero__panel {
    position: relative;
    max-width: 820px;
    margin-inline: auto;
    padding: 26px 28px 28px;
    text-align: center;
    background: rgba(8, 24, 19, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* glowing green→gold→red top line */
.hero__panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), var(--color-gold), var(--color-red));
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.hero__badge-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--color-red);
    padding: 3px 9px;
    border-radius: 999px;
}

.hero__badge-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero__title {
    font-size: clamp(1.7rem, 3.6vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    max-width: 22ch;
    margin-inline: auto;
}

.hero__title-accent {
    background: linear-gradient(90deg, var(--color-green), var(--color-gold), var(--color-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__subtitle {
    margin-top: 10px;
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    color: var(--color-text-muted);
    max-width: 54ch;
    margin-inline: auto;
}

.hero__chips {
    list-style: none;
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.chip {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    padding: 8px 16px;
    border-radius: 999px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.chip:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ---------- Offers ---------- */
.offers {
    padding-block: 16px 64px;
}

.offers__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.offer {
    position: relative;
    display: grid;
    grid-template-columns: 190px 140px minmax(0, 1fr) auto 180px;
    grid-template-areas:
        "logo bonus desc pay cta"
        "note note note note note";
    align-items: center;
    column-gap: 22px;
    row-gap: 14px;
    padding: 26px 24px 20px;
    background: rgba(8, 24, 19, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.offer:hover {
    border-color: rgba(230, 182, 76, 0.4);
}

.offer--featured {
    border-color: rgba(230, 182, 76, 0.55);
    box-shadow: 0 0 0 1px rgba(230, 182, 76, 0.2), 0 12px 34px rgba(0, 0, 0, 0.45);
}

.offer__rank {
    position: absolute;
    top: 0;
    left: 22px;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: #1a1207;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.offer__logo {
    grid-area: logo;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.offer__logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.offer__bonus {
    grid-area: bonus;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.offer__bonus-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
}

.offer__bonus-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.85rem;
    line-height: 1;
    color: var(--color-gold);
}

.offer__bonus-extra {
    font-size: 0.82rem;
    font-weight: 600;
    color: #46c46f;
}

.offer__desc {
    grid-area: desc;
    padding-left: 16px;
    border-left: 2px solid var(--color-green);
}

.offer__desc p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.offer__more {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 5px 13px;
    border-radius: 6px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.offer__more:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.offer__pay {
    grid-area: pay;
    list-style: none;
    display: flex;
    gap: 6px;
}

.offer__pay li {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-border);
    padding: 6px 8px;
    border-radius: 5px;
    white-space: nowrap;
}

.offer__cta {
    grid-area: cta;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.offer__note {
    grid-area: note;
    text-align: center;
    font-size: 0.72rem;
    color: var(--color-text-dim);
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
}

/* Offers responsive */
@media (max-width: 900px) {
    .offer {
        grid-template-columns: 150px 1fr;
        grid-template-areas:
            "logo bonus"
            "desc desc"
            "pay cta"
            "note note";
        align-items: start;
    }

    .offer__pay {
        align-self: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .offer {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "bonus"
            "desc"
            "pay"
            "cta"
            "note";
        justify-items: center;
        text-align: center;
    }

    .offer__logo {
        width: 100%;
        max-width: 220px;
    }

    .offer__bonus {
        align-items: center;
    }

    .offer__desc {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--color-green);
        padding-top: 12px;
    }
}

/* ---------- Section shared ---------- */
.section {
    padding-block: 40px;
}

.container--narrow {
    max-width: 820px;
}

.section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}

.section__eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.section__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section__subtitle {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ---------- Section 1: Features ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature {
    padding: 24px 20px;
    background: rgba(8, 24, 19, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature:hover {
    border-color: rgba(230, 182, 76, 0.4);
    transform: translateY(-3px);
}

.feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--color-gold);
    background: rgba(230, 182, 76, 0.1);
    border: 1px solid rgba(230, 182, 76, 0.25);
    border-radius: 12px;
    margin-bottom: 16px;
}

.feature__icon svg {
    width: 24px;
    height: 24px;
}

.feature__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature__text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* ---------- Section 2: Steps ---------- */
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 26px 20px 22px;
    background: rgba(8, 24, 19, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    border-radius: 50%;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.step__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step__text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* ---------- Section 3: FAQ ---------- */
.faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: rgba(8, 24, 19, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq__item[open] {
    border-color: rgba(230, 182, 76, 0.4);
}

.faq__q {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    list-style: none;
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__q::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-gold);
    transition: transform 0.2s ease;
}

.faq__item[open] .faq__q::after {
    transform: rotate(45deg);
}

.faq__a {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ---------- Section 4: Responsible gaming ---------- */
.rg {
    display: flex;
    gap: 22px;
    padding: 30px;
    background: linear-gradient(120deg, rgba(15, 90, 47, 0.35), rgba(8, 24, 19, 0.75) 55%, rgba(179, 20, 27, 0.3));
    border: 1px solid rgba(230, 182, 76, 0.3);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.rg__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--color-gold);
    background: rgba(230, 182, 76, 0.12);
    border: 1px solid rgba(230, 182, 76, 0.3);
    border-radius: 14px;
}

.rg__icon svg {
    width: 30px;
    height: 30px;
}

.rg__title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.rg__text {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.rg__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.rg__list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.rg__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.rg__help {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.rg__help strong {
    color: var(--color-gold);
}

/* Sections responsive */
@media (max-width: 900px) {
    .features,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .features,
    .steps {
        grid-template-columns: 1fr;
    }

    .rg {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--red {
    background: var(--color-red);
    color: #fff;
}

.btn--red:hover {
    background: var(--color-red-dark);
}

.btn--green {
    background: var(--color-green);
    color: #fff;
}

.btn--green:hover {
    background: var(--color-green-dark);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn--ghost:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ---------- Content / legal pages ---------- */
.page {
    padding-block: 40px 24px;
}

.page__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.page__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page__subtitle {
    margin-top: 10px;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.prose {
    padding: 32px;
    background: rgba(8, 24, 19, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.prose > *:first-child {
    margin-top: 0;
}

.prose h2 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 28px 0 12px;
    padding-left: 14px;
}

.prose h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--color-green), var(--color-gold), var(--color-red));
}

.prose h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 20px 0 8px;
}

.prose p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.prose ul,
.prose ol {
    margin: 0 0 14px;
    padding-left: 22px;
}

.prose li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.prose a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose strong {
    color: var(--color-text);
}

.prose__updated {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 4px 0 20px;
}

.contact-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.contact-card a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-gold);
}

@media (max-width: 560px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .prose {
        padding: 22px 18px;
    }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    width: min(340px, calc(100vw - 40px));
    padding: 20px;
    background: rgba(8, 24, 19, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 182, 76, 0.35);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner::before {
    content: "";
    display: block;
    height: 3px;
    width: 46px;
    margin-bottom: 14px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-green), var(--color-gold), var(--color-red));
}

.cookie-banner__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.cookie-banner__text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.cookie-banner__text a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__btn {
    width: 100%;
}

@media (max-width: 560px) {
    .cookie-banner {
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    margin-top: 40px;
    background: linear-gradient(180deg, rgba(8, 24, 19, 0.6), rgba(6, 18, 14, 0.92));
    border-top: 1px solid rgba(230, 182, 76, 0.18);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-block: 40px 32px;
    gap: 18px;
}

.footer__brand img {
    height: 40px;
    width: auto;
}

.footer__tagline {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    max-width: 52ch;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer__nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.footer__nav a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.footer__age {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 560px;
    padding: 12px 18px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    background: linear-gradient(90deg, rgba(15, 90, 47, 0.25), rgba(8, 24, 19, 0.4) 50%, rgba(179, 20, 27, 0.22));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.footer__regulators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 4px;
}

.footer__reg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 10px 16px;
    background: #fff;
    border-radius: var(--radius-sm);
    transition: transform 0.2s ease;
}

.footer__reg:hover {
    transform: translateY(-2px);
}

.footer__reg img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.footer__email {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-gold);
    padding: 9px 18px;
    border: 1px solid rgba(230, 182, 76, 0.35);
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer__email:hover {
    background: rgba(230, 182, 76, 0.12);
}

.footer__bottom {
    border-top: 1px solid var(--color-border);
    padding-block: 16px;
}

.footer__bottom p {
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-text-dim);
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .brand__logo {
        height: 38px;
    }

    .age-bar__inner {
        gap: 4px 8px;
        min-height: 0;
        font-size: 0.66rem;
        line-height: 1.35;
        padding-block: 6px;
    }

    .age-badge {
        font-size: 0.62rem;
        padding: 2px 6px;
    }

    body {
        background-image: url("../img/bg-guia-mb.jpg");
    }

    .hero {
        padding-block: 20px;
    }

    .hero__panel {
        padding: 20px 16px;
    }

    .hero__badge {
        gap: 8px;
        margin-bottom: 10px;
    }

    .hero__badge-text {
        font-size: 0.62rem;
        letter-spacing: 0.1em;
    }

    .hero__title {
        font-size: 1.5rem;
    }

    .hero__subtitle {
        margin-top: 8px;
        font-size: 0.85rem;
    }

    .hero__chips {
        margin-top: 14px;
        gap: 8px;
    }

    .chip {
        font-size: 0.76rem;
        padding: 6px 12px;
    }
}
