:root {
    /* Paleta de cores refinada */
    --bg-dark: #0a0a10;
    --bg-card: #12121a;
    --bg-card-hover: #171724;
    --text: #f0f0f5;
    --muted: #9e9eb5;
    --brand-1: #0052cc;
    --brand-2: #0cb0f0;
    --brand-3: #ff9500;
    --text-dark: #1f2937;
    --text-light: #f9fafb;
    --bg-light: #f3f4f6;
    --success: #39E000;
    --danger: #ff4d4f;
    --shadow: 0 10px 30px rgba(0, 0, 0, .5);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, .3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- MELHORIA: ESTILIZAÇÃO DO SCROLL --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #2a2a3a;
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-1);
}

html {
    scroll-behavior: smooth;
}

/* Estilos específicos para o menu de login */
.login-container {
    position: relative;
    display: inline-block;
}

/* --- MELHORIA: AJUSTE DO MENU (ALINHAMENTO E CORES) --- */
.login-select {
    position: absolute;
    top: calc(100% + 10px);
    right: 0; /* Alterado de left:0 para right:0 para alinhar com o botão */
    background: var(--bg-card); /* Usando a variável de cor do tema */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 10px;
    min-width: 180px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 1000;
}

.login-select.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.login-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.login-option:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--brand-2);
}

.login-option i {
    width: 16px;
    text-align: center;
    color: var(--brand-2);
}

html,
body {
    height: 100%;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Efeito de gradiente refinado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(800px 400px at 85% -5%, rgba(0, 153, 255, 0.25), transparent 60%),
        radial-gradient(700px 350px at 5% 15%, rgba(0, 162, 255, 0.15), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER ESTILIZADO */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: saturate(180%) blur(12px);
    background: rgba(11, 11, 18, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 15px 0;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header__img {
    width: 160px;
    height: auto;
    transition: var(--transition);
}

.header__img:hover {
    opacity: 0.9;
}

.header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header__ul {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.header__li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__li a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.header__li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--brand-1), var(--brand-2));
    transition: var(--transition);
}

.header__li a:hover {
    color: #fff;
}

.header__li a:hover::after {
    width: 100%;
}

.header__hamburger {
    display: none;
    background: none;
    color: #fff;
    border: 0;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.header__hamburger:hover {
    background: rgba(255, 255, 255, .1);
}

.header__cta {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
}

.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  
}

.btn.primary {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: #fff;
    box-shadow: var(--shadow-light);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 176, 240, 0.3);
}

.btn.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, .08);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ===== AJUSTE FINAL: MOSTRAR BURGUER CORRETO NO MOBILE ===== */
@media (max-width: 768px) {
    /* Esconde o menu desktop */
    .header__nav {
        display: none;
    }

    /* Mostra o hamburguer do header */
    .header__hamburger {
        display: block;
    }
}

/* Offcanvas Mobile Styles */
.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.offcanvas.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.off-body {
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #12121a, #0a0a10);
    padding: 25px 20px;
    border-right: 1px solid rgba(12, 176, 240, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: contain;
}

#closeOff {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f5;
    cursor: pointer;
    transition: all 0.3s ease;
}

#closeOff:hover {
    background: rgba(12, 176, 240, 0.2);
    border-color: #0cb0f0;
    color: #0cb0f0;
    transform: rotate(90deg);
}

#closeOff i {
    font-size: 20px;
}

.off-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}



.off-links a {
    color: #f0f0f5;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.off-links a i {
    width: 20px;
    height: 20px;
    color: #0cb0f0;
}

.off-links a:hover {
    background: rgba(12, 176, 240, 0.1);
    border-color: rgba(12, 176, 240, 0.2);
    transform: translateX(10px);
    color: #0cb0f0;
}

.off-links a.active {
    background: linear-gradient(90deg, rgba(12, 176, 240, 0.2), transparent);
    border-left: 3px solid #0cb0f0;
    color: #0cb0f0;
}

/* Botão Hamburguer */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
    position: relative;
}

.hamburger-btn i {
    width: 28px;
    height: 28px;
    color: #f0f0f5;
    transition: color 0.3s ease;
}

.hamburger-btn:hover i {
    color: #0cb0f0;
}

/* Responsivo */
@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }
    
    .off-body {
        width: 85%;
    }
}
/* ============================================
   NOTICES.CSS - PÁGINA DE NOTÍCIAS AGENDWORK
   Mobile-first, responsivo, performático
   ============================================ */

/* ===== SEÇÃO PRINCIPAL ===== */
/* ============================================
   NOTICES.CSS - PÁGINA DE NOTÍCIAS AGENDWORK
   Front-end público - Design premium
   ============================================ */

/* ===== SEÇÃO PRINCIPAL ===== */
.notices-section {
    padding: 60px 0 80px;
    position: relative;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO NOTÍCIA PRINCIPAL ===== */
.hero-news {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.hero-news:hover {
    transform: translateY(-4px);
    border-color: rgba(12, 176, 240, 0.2);
    box-shadow: var(--shadow);
}

.hero-news__image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #1a1a2a, #0a0a10);
    overflow: hidden;
}

.hero-news__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-news:hover .hero-news__image img {
    transform: scale(1.05);
}

.hero-news__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    z-index: 2;
    letter-spacing: 0.5px;
}

.hero-news__content {
    padding: 28px;
}

.hero-news__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
    font-size: 0.8rem;
}

.hero-news__date {
    color: var(--muted);
}

.hero-news__category {
    color: var(--brand-primary);
    font-weight: 500;
}

.hero-news__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-news__excerpt {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-news__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
}

.hero-news__link i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.hero-news__link:hover {
    gap: 12px;
}

.hero-news__link:hover i {
    transform: translateX(4px);
}

/* ===== GRID DE NOTÍCIAS ===== */
.notices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* ===== CARD DE NOTÍCIA ===== */
.notice-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.notice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(12, 176, 240, 0.2);
    box-shadow: var(--shadow);
}

.notice-card__image {
    height: 220px;
    background: linear-gradient(135deg, #1a1a2a, #0a0a10);
    overflow: hidden;
}

.notice-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.notice-card:hover .notice-card__image img {
    transform: scale(1.05);
}

.notice-card__content {
    padding: 24px;
}

.notice-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 0.7rem;
}

.notice-card__meta span:first-child {
    background: rgba(12, 176, 240, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--brand-primary);
    font-weight: 500;
}

.notice-card__meta span:last-child {
    color: var(--muted);
}

.notice-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.notice-card__excerpt {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.notice-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.notice-card__link:hover {
    gap: 10px;
}

/* ===== ESTADO VAZIO ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    grid-column: 1 / -1;
}

.empty-state i {
    width: 64px;
    height: 64px;
    color: var(--muted);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--muted);
    font-size: 0.85rem;
}

/* ===== LOADING SKELETON ===== */
.skeleton-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-image {
    height: 220px;
    background: linear-gradient(90deg, #1a1a2a 25%, #252540 50%, #1a1a2a 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
}

.skeleton-content {
    padding: 24px;
}

.skeleton-title {
    height: 22px;
    background: #1a1a2a;
    border-radius: 4px;
    margin-bottom: 14px;
    width: 85%;
}

.skeleton-text {
    height: 14px;
    background: #1a1a2a;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.skeleton-meta span {
    height: 24px;
    background: #1a1a2a;
    border-radius: 20px;
    width: 80px;
}

.skeleton-meta span:last-child {
    width: 100px;
}

@keyframes skeletonLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-news,
.notice-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* Aplicar delay progressivo nos cards */
.notice-card:nth-child(1) { animation-delay: 0.05s; }
.notice-card:nth-child(2) { animation-delay: 0.1s; }
.notice-card:nth-child(3) { animation-delay: 0.15s; }
.notice-card:nth-child(4) { animation-delay: 0.2s; }
.notice-card:nth-child(5) { animation-delay: 0.25s; }
.notice-card:nth-child(6) { animation-delay: 0.3s; }

/* ===== RESPONSIVIDADE ===== */

/* Tablet (768px para cima) */
@media (min-width: 768px) {
    .hero-news {
        flex-direction: row;
    }
    
    .hero-news__image {
        flex: 1;
        height: auto;
        min-height: 380px;
    }
    
    .hero-news__content {
        flex: 1;
        padding: 36px;
    }
    
    .hero-news__title {
        font-size: 2rem;
    }
    
    .notices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Desktop (1024px para cima) */
@media (min-width: 1024px) {
    .notices-section {
        padding: 80px 0 100px;
    }
    
    .hero-news__title {
        font-size: 2.2rem;
    }
    
    .hero-news__excerpt {
        font-size: 1rem;
    }
    
    .notices-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .notice-card__title {
        font-size: 1.2rem;
    }
}

/* Desktop Grande (1400px para cima) */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
    
    .hero-news__title {
        font-size: 2.4rem;
    }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    .notices-section {
        padding: 40px 0 60px;
    }
    
    .hero-news {
        margin-bottom: 40px;
    }
    
    .hero-news__image {
        height: 220px;
    }
    
    .hero-news__content {
        padding: 20px;
    }
    
    .hero-news__title {
        font-size: 1.4rem;
    }
    
    .hero-news__excerpt {
        font-size: 0.85rem;
    }
    
    .notice-card__image {
        height: 180px;
    }
    
    .notice-card__content {
        padding: 18px;
    }
    
    .notice-card__title {
        font-size: 1rem;
    }
}

/* Mobile Pequeno (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-news__image {
        height: 180px;
    }
    
    .hero-news__badge {
        top: 12px;
        left: 12px;
        padding: 4px 10px;
        font-size: 0.6rem;
    }
    
    .hero-news__meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-news__title {
        font-size: 1.2rem;
    }
    
    .notices-grid {
        gap: 20px;
    }
    
    .notice-card__image {
        height: 160px;
    }
    
    .notice-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ===== SCROLLBAR CUSTOM ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-secondary);
}

/* ===== UTILITÁRIOS ===== */
.text-center {
    text-align: center;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-news,
    .notice-card,
    .hero-news__image img,
    .notice-card__image img {
        animation: none;
        transition: none;
    }
    
    .hero-news:hover,
    .notice-card:hover {
        transform: none;
    }
}

/* ===== ESTILOS ADICIONAIS PARA TAGS HTML ===== */
a {
    text-decoration: none;
}

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

/* ===== RIPPLE EFFECT PARA LINKS ===== */
.notice-card__link {
    position: relative;
    overflow: hidden;
}

.notice-card__link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(12, 176, 240, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.notice-card__link:active::before {
    width: 100px;
    height: 100px;
}
.alert-banner {
    background: linear-gradient(135deg, rgba(12, 176, 240, 0.08), rgba(0, 82, 204, 0.05));
    border-radius: 20px;
    margin: 30px 0 40px;
    border: 1px solid rgba(12, 176, 240, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.alert-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(12, 176, 240, 0.08), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.alert-banner:hover::before {
    left: 100%;
}

.alert-banner:hover {
    border-color: rgba(12, 176, 240, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(12, 176, 240, 0.15);
}

.alert-banner__content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    flex-wrap: wrap;
}

/* Ícone */
.alert-banner__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(12, 176, 240, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseRing 2s infinite;
}

.alert-banner__icon i {
    width: 28px;
    height: 28px;
    color: var(--brand-primary, #0cb0f0);
}

@keyframes pulseRing {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(12, 176, 240, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(12, 176, 240, 0);
    }
}

/* Texto */
.alert-banner__text {
    flex: 1;
}

.alert-banner__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.alert-banner__title .highlight {
    background: linear-gradient(135deg, var(--brand-primary, #0cb0f0), var(--brand-secondary, #0052cc));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.alert-banner__title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary, #0cb0f0), transparent);
}

.alert-banner__description {
    color: var(--muted, #9e9eb5);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Botão */
.alert-banner__actions {
    flex-shrink: 0;
}

.alert-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--brand-secondary, #0052cc), var(--brand-primary, #0cb0f0));
    padding: 10px 24px;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.alert-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.alert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 176, 240, 0.3);
    gap: 12px;
}

.alert-btn:hover i {
    transform: translateX(4px);
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .alert-banner__content {
        padding: 20px 24px;
        gap: 16px;
    }
    
    .alert-banner__icon {
        width: 48px;
        height: 48px;
    }
    
    .alert-banner__icon i {
        width: 24px;
        height: 24px;
    }
    
    .alert-banner__title {
        font-size: 1.1rem;
    }
    
    .alert-banner__description {
        font-size: 0.8rem;
    }
    
    .alert-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    .alert-banner {
        margin: 20px 0 30px;
    }
    
    .alert-banner__content {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    
    .alert-banner__icon {
        width: 60px;
        height: 60px;
    }
    
    .alert-banner__icon i {
        width: 30px;
        height: 30px;
    }
    
    .alert-banner__title {
        justify-content: center;
        font-size: 1rem;
    }
    
    .alert-banner__description {
        font-size: 0.8rem;
        max-width: 100%;
    }
    
    .alert-btn {
        padding: 10px 24px;
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Pequeno (até 480px) */
@media (max-width: 480px) {
    .alert-banner__content {
        padding: 20px 16px;
    }
    
    .alert-banner__icon {
        width: 50px;
        height: 50px;
    }
    
    .alert-banner__icon i {
        width: 24px;
        height: 24px;
    }
    
    .alert-banner__title {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 4px;
    }
    
    .alert-banner__description {
        font-size: 0.75rem;
    }
}

/* Desktop Grande */
@media (min-width: 1400px) {
    .alert-banner__content {
        padding: 28px 32px;
    }
    
    .alert-banner__title {
        font-size: 1.3rem;
    }
    
    .alert-banner__description {
        font-size: 0.9rem;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .alert-banner::before,
    .alert-banner,
    .alert-btn,
    .alert-btn i {
        animation: none;
        transition: none;
    }
    
    .alert-banner:hover {
        transform: none;
    }
    
    .alert-banner__icon {
        animation: none;
    }
}

/* ===== VARIAÇÕES DE CORES (opcional) ===== */

/* Versão para alerta de bug/correção */
.alert-banner--bug {
    background: linear-gradient(135deg, rgba(255, 77, 79, 0.08), rgba(255, 77, 79, 0.03));
    border-color: rgba(255, 77, 79, 0.2);
}

.alert-banner--bug .alert-banner__icon {
    background: rgba(255, 77, 79, 0.15);
}

.alert-banner--bug .alert-banner__icon i {
    color: var(--danger, #ff4d4f);
}

.alert-banner--bug .highlight {
    background: linear-gradient(135deg, #ff4d4f, #ff7878);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Versão para novidades/empresas */
.alert-banner--success {
    background: linear-gradient(135deg, rgba(57, 224, 0, 0.08), rgba(57, 224, 0, 0.03));
    border-color: rgba(57, 224, 0, 0.2);
}

.alert-banner--success .alert-banner__icon {
    background: rgba(57, 224, 0, 0.15);
}

.alert-banner--success .alert-banner__icon i {
    color: var(--success, #39E000);
}

.alert-banner--success .highlight {
    background: linear-gradient(135deg, #39E000, #6eff3a);
    -webkit-background-clip: text;
    background-clip: text;
}
.footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 60px 0 40px;
    color: var(--muted);
    background: var(--bg-card);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-2);
    color: #fff;
    transform: translateY(-3px);
}

.footer-legal {
    margin-top: 10px;
}

.footer-legal a {
    color: var(--muted);
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-legal a:hover {
    color: #fff;
}