@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/OpenSans-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/OpenSans-SemiBold.woff2') format('woff2');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/OpenSans-Bold.woff2') format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('/assets/fonts/Orbitron-Medium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('/assets/fonts/Orbitron-Bold.woff2') format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}


/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e39e44;
    --primary-dark: #c6893a;
    --secondary-color: #00111D;
    --secondary-light: #001a2a;
    --accent-color: #153a50;
    --accent-light: #1b466c;
    --text-color: #d8d8d8;
    --text-light: #ffffff;
    --text-dark: #a0a0a0;
    --background-dark: #040404;
    --background-medium: #1a1a1a;
    --card-bg: #0a1929;
    --card-hover: #0e3046;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-radius: 10px;
    --border-radius-sm: 6px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
    --navbar-height: 70px;
    --page-top-offset: 34px;
    --fab-offset-right: 2rem;
    --fab-offset-bottom: 2rem;
    --fab-stack-gap: 0.75rem;
    --back-to-top-size: 50px;
    --back-to-top-icon-size: 1.3rem;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(180deg, var(--background-dark) 0%, var(--secondary-color) 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body.page-narrow {
    background: linear-gradient(
        180deg,
        var(--background-dark) 0%,
        var(--secondary-color) clamp(380px, 60vh, 720px)
    );
}

html {
    background: var(--background-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ── Botões globais ───────────────────────────────────────────────────────────
   Utilitários disponíveis em todas as páginas.
   Variantes específicas de contexto (guide, discord, etc.) vivem nos CSS de página.
   ─────────────────────────────────────────────────────────────────────────── */

.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 158, 68, 0.4);
    color: var(--secondary-color);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.btn-support {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-support:hover {
    background: linear-gradient(135deg, #ee5a6f, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 480px) {
    :root {
        --fab-offset-right: 1rem;
        --fab-offset-bottom: 1rem;
        --back-to-top-size: 40px;
        --back-to-top-icon-size: 1.1rem;
    }
}

/* Motion tokens + simple reveal utilities */
:root {
    --motion-fast: 140ms;
    --motion-base: 220ms;
    --motion-slow: 320ms;
    --motion-ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
    --motion-ease-emphasized: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal] {
    --reveal-distance: 14px;
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translateY(var(--reveal-distance));
    transition:
        opacity var(--motion-base) var(--motion-ease-standard),
        transform var(--motion-slow) var(--motion-ease-emphasized);
    transition-delay: var(--reveal-delay);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Navbar */
.navbar {
    background: rgba(0, 17, 29, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(227, 158, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

/* Logo apenas - sem texto */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    width: fit-content;
    transition: ease .5s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--text-light);
    background: rgba(227, 158, 68, 0.1);
    text-decoration: none;
}

.nav-link:hover::before {
    width: 60%;
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(227, 158, 68, 0.15);
}

.nav-link.active::before {
    width: 60%;
}

/* Ícones nos botões */
.nav-link i {
    font-size: 1em;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-1px);
}

.dropdown {
    position: relative;
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(0, 17, 29, 0.98);
    backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    border-radius: 12px;
    top: 100%;
    margin-top: 6px;
    left: 0;
    border: 1px solid rgba(227, 158, 68, 0.2);
    padding: 0.5rem 0;
    animation: fadeInUp 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    color: var(--primary-color);
    background: rgba(227, 158, 68, 0.1);
    border-left-color: var(--primary-color);
    padding-left: 1.5rem;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 220px;
}

.search-wrapper:focus-within {
    width: 250px;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(227, 158, 68, 0.1);
}

#search-input {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    flex: 1;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
}

#search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Menu toggle moderno */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.menu-toggle.is-active {
    background: rgba(227, 158, 68, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile menu moderno */
.mobile-menu {
    display: none;
    background: rgba(0, 17, 29, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(227, 158, 68, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.3s ease;
}

.mobile-menu a {
    text-decoration: none;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

/* Pesquisa mobile */
.mobile-search {
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.mobile-search-form {
    width: 100%;
}

.mobile-search-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-search-wrapper:focus-within {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(227, 158, 68, 0.1);
}

#mobile-search-input {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    flex: 1;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
}

#mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.mobile-search-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none;
}

.mobile-link:last-child {
    border-bottom: none;
}


.mobile-submenu {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin: 0.5rem 0;
    padding: 0.5rem;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
    .menu-toggle:hover {
        background: rgba(227, 158, 68, 0.2);
        border-color: var(--primary-color);
        color: var(--primary-color);
        transform: rotate(90deg);
    }

    .mobile-search-btn:hover {
        color: var(--primary-color);
    }

    .mobile-link:hover {
        background: rgba(227, 158, 68, 0.1);
        color: var(--primary-color);
        transform: translateX(5px);
        text-decoration: none;
    }

    .mobile-submenu a:hover {
        background: rgba(227, 158, 68, 0.1);
        color: var(--primary-color);
        text-decoration: none;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .nav-links,
    .search-container {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .navbar {
        padding: 0.8rem 1rem;
    }

    .logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        margin: 0.5rem -1rem 0;
        border-radius: 0 0 12px 12px;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(227, 158, 68, 0.2);
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 3rem 2rem 1rem;
    border-top: 2px solid var(--accent-color);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-section a {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    transition: var(--transition);
    padding: 0.3rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-decoration: none;
}

.footer-section p {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.legal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem !important;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
}

.legal-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.logo-section {
    text-align: center;
}

.logo-section img {
    width: auto;
    height: 50px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-section h3 {
    justify-content: center;
}

.logo-section p {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.8;
}

.footer-report-note {
    margin-top: 0.65rem;
    font-size: 0.86rem;
}

.footer-report-note a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: var(--transition);
}

.footer-report-note a i {
    margin-right: 0.35rem;
}

.footer-report-note a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Scroll Top Control */
.scroll-top-control {
    position: fixed;
    bottom: var(--fab-offset-bottom, 2rem);
    right: var(--fab-offset-right, 2rem);
    background: var(--primary-color, #e39e44);
    color: var(--secondary-color, #00111D);
    width: var(--back-to-top-size, 50px);
    height: var(--back-to-top-size, 50px);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--back-to-top-icon-size, 1.3rem);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.scroll-top-control.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-control:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.consent-banner__content {
  width: min(720px, 100%);
  background: rgba(0, 17, 29, 0.92);
  border: 1px solid rgba(227, 158, 68, 0.35);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  color: var(--text-light);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 0.8rem;
}

.consent-banner__content p {
  margin: 0;
  color: var(--text-color);
  line-height: 1.5;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.consent-banner__actions .btn {
  width: auto;
}

/* ── Página /apoiar ──────────────────────────────────────────────────────────── */

/* Hero */
.apoiar-hero {
    padding: calc(var(--navbar-height) + var(--page-top-offset)) 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.apoiar-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(227, 158, 68, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.apoiar-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(227, 158, 68, 0.1);
    border: 1px solid rgba(227, 158, 68, 0.25);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.apoiar-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 12px;
}

.apoiar-hero p {
    color: var(--text-dark);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

/* Layout principal */
.apoiar-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Bloco de texto */
.apoiar-copy {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 36px 40px;
}

.apoiar-copy p {
    color: var(--text-dark);
    font-size: 1.025rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.apoiar-copy p:last-child {
    margin-bottom: 0;
}

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

/* Ko-fi iframe */
.apoiar-kofi {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #0f2233;
    border: 1px solid rgba(227, 158, 68, 0.2);
    padding: 6px;
}

.apoiar-kofi iframe {
    display: block;
    border-radius: var(--border-radius);
    background: #0f2233;
    height: 600px;
}

.apoiar-kofi-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-dark);
    line-height: 1.6;
    text-align: center;
}

/* Apoiantes */
.supporters-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px 40px;
}

.supporters-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.supporters-title i {
    color: var(--primary-color);
}

.supporters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.supporter-name {
    background: var(--accent-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 6px 14px;
    font-size: 0.875rem;
    color: var(--text-color);
}

/* Outras formas */
.apoiar-outras-titulo {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.apoiar-outras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.apoiar-outra-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.apoiar-outra-card:hover {
    border-color: rgba(227, 158, 68, 0.3);
    background: var(--card-hover);
    color: var(--text-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.apoiar-outra-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-sm);
    background: rgba(227, 158, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.apoiar-outra-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.apoiar-outra-text span {
    font-size: 0.8rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ── Responsivo ──────────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
    .apoiar-copy {
        padding: 24px 20px;
    }

    .apoiar-outras-grid {
        grid-template-columns: 1fr;
    }
}

