/**
 * TOPCIFRAS - Estilos Globais
 * Arquivo CSS centralizado para todo o site
 */

/* ========== VARIÁVEIS ========== */
:root {
    --bg: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #1e293b;
    --bg-hover: #f1f5f9;
    --border: #e2e8f0;
    --text: #1e293b;
    --text-light: #64748b;
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-bg: #eef2ff;
    --secondary: #ec4899;
    --success: #10b981;
    --success-bg: #d1fae5;
    --warning: #f59e0b;
    --warning-bg: #fef3c7;
    --danger: #ef4444;
    --danger-bg: #fee2e2;
    --gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    --radius: 12px;
}

/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; transition: 0.2s; }
a:hover { color: var(--primary-dark); }

/* ========== TARJA ANIMADA ========== */
.top-banner {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #8b5cf6, #6366f1);
    background-size: 200% 100%;
    animation: gradientMove 4s ease infinite;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2.5s infinite;
}

.top-banner span { position: relative; z-index: 1; }

.top-banner .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255,255,255,0.25);
    padding: 0.15rem 0.7rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    font-weight: 700;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ========== COOKIE CONSENT ========== */
.cookie-popup {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 1.25rem 2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.cookie-popup.show { display: block; animation: slideUp 0.3s ease; }

@keyframes slideUp { 
    from { transform: translateY(100%); } 
    to { transform: translateY(0); } 
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 280px; }
.cookie-text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.cookie-text p { color: var(--text-light); font-size: 0.85rem; margin: 0; }
.cookie-btns { display: flex; gap: 0.5rem; }

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.cookie-btn.accept { background: var(--primary); color: white; }
.cookie-btn.accept:hover { background: var(--primary-dark); }
.cookie-btn.reject { background: var(--bg); color: var(--text); border: 1px solid var(--border); }

/* ========== HEADER ========== */
header {
    background: var(--bg-card);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo span { font-size: 1.5rem; }

nav { display: flex; gap: 1.25rem; align-items: center; }
nav a { color: var(--text-light); font-weight: 500; font-size: 0.95rem; }
nav a:hover, nav a.active { color: var(--primary); }

/* ========== SEARCH ========== */
.search-box { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.search-box input, .search-box select {
    padding: 0.55rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.9rem;
}

.search-box input { min-width: 180px; }

.search-box input:focus, .search-box select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-bg);
}

.search-box button {
    padding: 0.55rem 1.2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.search-box button:hover { background: var(--primary-dark); }

/* ========== USER AREA ========== */
.user-area { display: flex; align-items: center; gap: 0.75rem; }

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
}

.btn-login:hover { border-color: var(--primary); color: var(--primary); }
.btn-login img { width: 18px; height: 18px; }

.user-info { display: flex; align-items: center; gap: 0.5rem; }

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout {
    padding: 0.4rem 0.8rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
}

.btn-logout:hover { border-color: var(--danger); color: var(--danger); background: var(--danger-bg); }

/* ========== MAIN ========== */
main { max-width: 1200px; margin: 0 auto; padding: 2rem; }

/* ========== SECTION HEADERS ========== */
.section { margin-bottom: 3rem; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.section-header h1,
.section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
}

/* ========== HERO SECTION ========== */
.hero {
    background: var(--gradient);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🎸';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    right: -20px;
    top: -30px;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat { text-align: center; }
.hero-stat-value { font-size: 2rem; font-weight: 800; }
.hero-stat-label { font-size: 0.85rem; opacity: 0.8; }

/* ========== TOP 10 ========== */
.top10-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.top10-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.2s;
}

.top10-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.top10-rank {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.top10-rank.gold { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.top10-rank.silver { background: linear-gradient(135deg, #94a3b8, #64748b); }
.top10-rank.bronze { background: linear-gradient(135deg, #fb923c, #ea580c); }

.top10-info { flex: 1; min-width: 0; }

.top10-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text);
}

.top10-info p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

.top10-views {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ========== SLIDER ========== */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
}

.slider-wrapper::-webkit-scrollbar { display: none; }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text);
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }
.slider-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.slider-btn:disabled:hover { background: white; color: var(--text); transform: translateY(-50%); }

/* ========== GÊNEROS CARDS ========== */
.genero-card {
    flex: 0 0 160px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: 0.3s;
}

.genero-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.15);
}

.genero-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.genero-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.genero-card span { font-size: 0.75rem; color: var(--text-light); }

/* ========== ARTISTAS CARDS ========== */
.artista-card {
    flex: 0 0 180px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: 0.3s;
}

.artista-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.15);
}

.artista-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.artista-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.artista-card span { font-size: 0.75rem; color: var(--text-light); }

/* ========== MÚSICAS GRID ========== */
.musicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.musica-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--border);
    transition: 0.2s;
}

.musica-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    transform: translateY(-3px);
}

.musica-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--text); }
.musica-card .artista { color: var(--primary); font-weight: 500; font-size: 0.9rem; }

.musica-card .meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    color: var(--text-light);
    font-size: 0.8rem;
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.newsletter-content { position: relative; z-index: 1; }
.newsletter-section h2 { color: white; font-size: 1.75rem; margin-bottom: 0.5rem; }

.newsletter-section > .newsletter-content > p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.7); }

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.25);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.newsletter-success {
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.newsletter-error {
    background: rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-top: 1rem;
}

.newsletter-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* ========== CIFRA PAGE ========== */
.cifra-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.cifra-header h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.25rem; }
.cifra-header .artista { font-size: 1.15rem; color: var(--primary); font-weight: 500; }

.controles {
    background: var(--bg-card);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    border: 1px solid var(--border);
}

.controle-grupo { display: flex; align-items: center; gap: 0.5rem; }
.controle-grupo label { color: var(--text-light); font-size: 0.85rem; font-weight: 500; }

.btn-tom {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-tom:hover { background: var(--primary); color: white; border-color: var(--primary); }

.tom-atual {
    padding: 0.4rem 0.9rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    min-width: 45px;
    text-align: center;
}

.controle-grupo input[type="range"] { width: 100px; accent-color: var(--primary); }

.btn-scroll {
    padding: 0.45rem 0.9rem;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-scroll:hover, .btn-scroll.active { background: var(--success); color: white; border-color: var(--success); }

.btn-favorito {
    padding: 0.45rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: 0.2s;
}

.btn-favorito:hover { border-color: var(--secondary); color: var(--secondary); }
.btn-favorito.favoritado { background: var(--secondary); color: white; border-color: var(--secondary); }
.btn-favorito.favoritado:hover { background: #db2777; border-color: #db2777; }

.cifra-container {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.cifra-texto {
    font-family: 'JetBrains Mono', monospace;
    white-space: pre-wrap;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text);
}

.cifra-texto .acorde {
    color: var(--primary);
    font-weight: 700;
    background: var(--primary-bg);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

.cifra-texto .secao {
    color: var(--secondary);
    font-weight: 600;
}

/* ========== PÁGINAS INSTITUCIONAIS ========== */
.page-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.page-content h1 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.page-content h3 { color: var(--text); margin: 1.5rem 0 0.75rem; font-size: 1.1rem; }
.page-content p { color: var(--text-light); margin-bottom: 0.75rem; }
.page-content ul, .page-content ol { margin-left: 1.5rem; color: var(--text-light); margin-bottom: 1rem; }
.page-content li { margin-bottom: 0.4rem; }

.page-content .highlight {
    background: var(--primary-bg);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    color: var(--text);
}

.page-content .card-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    margin: 1rem 0;
}

/* ========== MODAL LOGIN ========== */
.login-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.login-modal.show { display: flex; }

.login-modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn { 
    from { transform: scale(0.9); opacity: 0; } 
    to { transform: scale(1); opacity: 1; } 
}

.login-modal h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.login-modal p { color: var(--text-light); margin-bottom: 1.5rem; }

.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    width: 100%;
}

.btn-google:hover { border-color: #4285f4; background: #f8fafc; }
.btn-google img { width: 20px; height: 20px; }

.login-modal-close {
    margin-top: 1rem;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.9rem;
}

.login-modal-close:hover { color: var(--text); }

/* ========== FOOTER ========== */
footer {
    background: var(--bg-dark);
    color: #94a3b8;
    margin-top: 0;
    padding: 3rem 2rem 2rem;
}

.newsletter-footer-wrapper footer {
    margin-top: 0 !important;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 { color: white; margin-bottom: 1rem; font-size: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #94a3b8; font-size: 0.9rem; }
.footer-col a:hover { color: white; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    font-size: 0.85rem;
}

.footer-bottom p { margin: 0.25rem 0; }

/* ========== EMPTY STATE ========== */
.empty { text-align: center; padding: 3rem; color: var(--text-light); }
.empty svg { width: 60px; height: 60px; margin-bottom: 1rem; opacity: 0.4; }

/* ========== ALERTS ========== */
.alert-success {
    background: var(--success-bg);
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.alert-error {
    background: var(--danger-bg);
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.2s;
}

.btn:hover { background: var(--primary-dark); color: white; }
.btn-success { background: var(--success); }
.btn-success:hover { background: #059669; }
.btn-warning { background: var(--warning); color: var(--text); }
.btn-secondary { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); background: var(--bg); }
.btn-danger { background: var(--danger); }
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.85rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    main { padding: 1rem; }
    
    .header-inner { flex-direction: column; gap: 1rem; }
    .search-box { width: 100%; }
    .search-box input { flex: 1; }
    nav { order: 3; width: 100%; justify-content: center; }
    .user-area { order: 2; }
    
    .hero { padding: 2rem 1.5rem; }
    .hero h1 { font-size: 1.6rem; }
    
    .controles { flex-direction: column; align-items: stretch; }
    .controle-grupo { justify-content: center; }
    
    .page-content { padding: 1.5rem; }
    
    .newsletter-form input[type="email"] { min-width: 100%; }
}

/* ========== ADMIN STYLES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 2rem; }

.login-box {
    max-width: 400px;
    margin: 100px auto;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.login-box h2 { margin-bottom: 1.5rem; text-align: center; }

.header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 2rem; 
    flex-wrap: wrap; 
    gap: 1rem; 
}

.header h1 { font-size: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }

.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    background: var(--bg-card);
    padding: 0.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.tabs a {
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.tabs a:hover { background: var(--bg-hover); color: var(--text); }
.tabs a.active { background: var(--primary); color: white; }

.tabs .badge {
    background: var(--success-bg);
    color: #065f46;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-left: 0.25rem;
    font-weight: 600;
}

.nav { display: flex; gap: 0.5rem; }
.nav a {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
}
.nav a:hover { border-color: var(--primary); color: var(--primary); }

.msg {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.msg.success { background: var(--success-bg); color: #065f46; border: 1px solid #a7f3d0; }
.msg.error { background: var(--danger-bg); color: #991b1b; border: 1px solid #fca5a5; }

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.card h2 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label { color: var(--text-light); font-size: 0.85rem; }

/* ========== FORMS ========== */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-bg);
}

.form-group textarea {
    min-height: 200px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-hint { font-size: 0.8rem; color: var(--text-light); margin-top: 0.25rem; }

/* ========== TABLES ========== */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td { font-size: 0.9rem; }
tr:hover { background: var(--bg-hover); }
td code { background: var(--bg); padding: 0.2rem 0.5rem; border-radius: 4px; font-size: 0.8rem; }
td.actions { white-space: nowrap; }
td.actions a { margin-right: 0.25rem; }

/* ========== SITEMAP LIST ========== */
.sitemap-list { display: flex; flex-direction: column; gap: 0.75rem; }

.sitemap-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.sitemap-info { display: flex; align-items: center; gap: 1rem; }
.sitemap-icon { font-size: 1.5rem; }
.sitemap-name { font-weight: 600; }
.sitemap-url { font-size: 0.8rem; color: var(--text-light); }

/* ========== CONFIG WARNING ========== */
.config-warning {
    background: var(--warning-bg);
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
/* ========== FEATURES SLIDER ========== */
.feature-card {
    flex: 0 0 300px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.15);
}

.feature-favoritos::before { background: linear-gradient(90deg, #ec4899, #f43f5e); }
.feature-educativo::before { background: linear-gradient(90deg, #10b981, #14b8a6); }
.feature-tom::before { background: linear-gradient(90deg, #6366f1, #8b5cf6); }
.feature-scroll::before { background: linear-gradient(90deg, #f59e0b, #eab308); }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.2s;
}

.feature-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: scale(1.02);
}

.feature-btn img {
    width: 18px;
    height: 18px;
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========== BLOG GRID ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-grid-full {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    transform: translateY(-3px);
}

.blog-card .blog-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .blog-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    line-height: 1.4;
}

.blog-card .blog-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    flex: 1;
}

.blog-card-horizontal {
    display: flex;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.3s;
    text-decoration: none;
    color: inherit;
}

.blog-card-horizontal:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

.blog-card-horizontal .blog-image {
    flex: 0 0 200px;
    height: 150px;
    overflow: hidden;
}

.blog-card-horizontal .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-horizontal .blog-content {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-categoria {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card h3,
.blog-card-horizontal h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card p,
.blog-card-horizontal p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.blog-link {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.75rem;
    display: inline-block;
}

/* ========== BLOG POST PAGE ========== */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin: 0.5rem 0 1rem;
    line-height: 1.3;
}

.blog-post-resumo {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
}

.blog-post-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.blog-post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 2rem 0 1rem;
}

.blog-post-content h2:first-child {
    margin-top: 0;
}

.blog-post-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 0.75rem;
}

.blog-post-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content pre {
    background: var(--bg);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    margin: 1rem 0;
    border: 1px solid var(--border);
}

.blog-post-content strong {
    color: var(--text);
    font-weight: 600;
}

.blog-post-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== BLOG LOAD MORE ========== */
.blog-load-more {
    text-align: center;
    margin-top: 2rem;
}

.blog-load-more .btn,
.blog-load-more .btn-secondary {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
}

/* ========== RESPONSIVE BLOG ========== */
@media (max-width: 768px) {
    .blog-card-horizontal {
        flex-direction: column;
    }
    
    .blog-card-horizontal .blog-image {
        flex: none;
        width: 100%;
        height: 180px;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .blog-post-header h1 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        flex: 0 0 280px;
    }
}

/* ========== HERO FEATURES SLIDER ========== */
.hero-features-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.hero-features-slider {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.hero-slide {
    min-width: 100%;
    padding: 2.5rem;
    box-sizing: border-box;
    flex-shrink: 0;
    transition: transform 0.5s ease-in-out;
}

.slide-principal {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4338ca 100%);
    position: relative;
    overflow: hidden;
}

.slide-principal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.4) 0%, transparent 30%),
                radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 30%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

.slide-principal::after {
    content: '🎸';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.15;
    filter: grayscale(100%) brightness(2);
}

.slide-favoritos {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 50%, #fb7185 100%);
}

.slide-educativo {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 50%, #2dd4bf 100%);
}

.slide-tom {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.slide-scroll {
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #fbbf24 100%);
}

.hero-slide-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.hero-slide-icon {
    font-size: 4rem;
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-text {
    flex: 1;
}

.hero-slide-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 0.75rem 0;
    color: white;
}

.hero-slide-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 0.75rem 0;
    color: white;
}

.hero-slide-principal {
    flex-direction: column;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-stats-inline {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-stat-item:hover::before {
    left: 100%;
}

.hero-stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-stat-item:nth-child(1) .hero-stat-number {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-item:nth-child(2) .hero-stat-number {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-item:nth-child(3) .hero-stat-number {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slide-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    opacity: 0.95;
    color: white;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: white;
    color: #1e293b;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-slide-btn img {
    width: 20px;
    height: 20px;
}

.hero-slide-tag {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: rgba(255,255,255,0.25);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.hero-features-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hero-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-nav-btn:hover,
.hero-nav-btn.active {
    background: var(--primary);
    transform: scale(1.3);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    color: var(--text);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: translateY(-100%) scale(1.05);
}

.hero-arrow-left {
    left: 1.5rem;
}

.hero-arrow-right {
    right: 1.5rem;
}

/* ========== BLOG META ========== */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-autor {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.blog-autor img {
    width: 18px;
    height: 18px;
}

.blog-data {
    color: var(--text-light);
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
}

.blog-post-meta .blog-autor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.blog-post-meta .blog-autor img {
    width: 24px;
    height: 24px;
}

.blog-post-meta .blog-data {
    color: var(--text-light);
}

/* ========== RESPONSIVE HERO SLIDER ========== */
@media (max-width: 768px) {
    .hero-features-wrapper {
        padding: 0 0.5rem;
    }
    
    .hero-slide {
        padding: 1.5rem;
    }
    
    .hero-slide-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
    
    .hero-slide-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }
    
    .hero-slide-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-slide-text h3 {
        font-size: 1.25rem;
    }
    
    .hero-slide-text p {
        font-size: 0.9rem;
    }
    
    .hero-stats-inline {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .hero-stat-item {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .slide-principal::after {
        display: none;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-arrow-left {
        left: 0.5rem;
    }
    
    .hero-arrow-right {
        right: 0.5rem;
    }
    
    .blog-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* ========== LEGAL PAGES (Termos, Privacidade, Cookies) ========== */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.legal-update {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.legal-page h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-bg);
}

.legal-page h3 {
    font-size: 1.15rem;
    color: var(--text);
    margin: 1.5rem 0 0.75rem;
}

.legal-page p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text);
}

.legal-page ul li {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--primary);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

.legal-footer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--primary-bg);
    border-radius: 12px;
    text-align: center;
}

.legal-footer p {
    margin: 0;
    font-weight: 500;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--bg-card);
    font-weight: 600;
    color: var(--text);
}

.cookie-table td {
    color: var(--text);
}

.cookie-table a {
    color: var(--primary);
}

@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 1.5rem;
    }
    
    .legal-page h2 {
        font-size: 1.2rem;
    }
    
    .legal-page h3 {
        font-size: 1.05rem;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ========== ABOUT PAGE (Quem Somos) ========== */
.about-page {
    max-width: 1000px;
    margin: 0 auto;
}

.about-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-intro {
    margin-bottom: 2.5rem;
}

.about-intro .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
}

.about-section {
    margin-bottom: 2.5rem;
}

.about-section h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-section p {
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.about-features h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-features > p {
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

.feature-box .feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.about-list {
    margin: 1rem 0 1.5rem 1.25rem;
}

.about-list li {
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-bg) 0%, #ede9fe 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.about-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.about-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== CONTACT PAGE ========== */
.contact-page {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-intro {
    margin-bottom: 2.5rem;
}

.contact-intro .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
}

.contact-success {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.contact-success .success-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-success h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-success p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.contact-card:hover {
    border-color: var(--primary);
}

.contact-card .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-direct {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--primary-bg);
    border-radius: 12px;
}

.contact-direct h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-direct p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.email-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form-wrapper h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    transition: all 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-bg);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* ========== FOOTER 4 COLUMNS ========== */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-bottom p:last-child {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* ========== RESPONSIVE UPDATES ========== */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page h1,
    .contact-page h1 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col ul {
        padding: 0;
    }
}

/* ========== FOOTER POSTS APRENDIZADO ========== */
.footer-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-posts li {
    margin-bottom: 0.75rem;
}

.footer-post-link {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.4;
    transition: all 0.2s;
}

.footer-post-link:hover {
    color: var(--primary);
}

.footer-post-icon {
    flex-shrink: 0;
    font-size: 0.9rem;
}

.footer-post-title {
    flex: 1;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-posts {
        margin-bottom: 0.5rem;
    }
    
    .footer-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== NEWSLETTER FULL WIDTH ========== */
.newsletter-footer-wrapper {
    margin-top: 3rem;
}

.newsletter-fullwidth {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 3rem 1rem;
    /* Remove qualquer margem inferior para colar no footer */
    margin-bottom: 0;
}

.newsletter-footer-wrapper footer {
    /* Remove margem superior do footer */
    margin-top: 0;
}

.newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.newsletter-text {
    flex: 1;
    min-width: 250px;
}

.newsletter-text h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.newsletter-text p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 1rem;
}

.newsletter-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form-inline {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form-inline input {
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    width: 280px;
    background: rgba(255,255,255,0.95);
}

.newsletter-form-inline input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-form-inline button {
    padding: 0.875rem 1.5rem;
    background: #1e1b4b;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.newsletter-form-inline button:hover {
    background: #312e81;
    transform: translateY(-2px);
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.newsletter-success-msg {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
}

.newsletter-error-msg {
    color: #fecaca;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form-inline input {
        width: 100%;
    }
    
    .newsletter-form-inline button {
        width: 100%;
    }
}

/* ========== ADMIN NOTIFICATIONS ========== */
.admin-notification {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.notif-icon {
    font-size: 1.5rem;
}

.admin-notification span {
    color: #92400e;
}

.notif-link {
    margin-left: auto;
    color: #92400e;
    font-weight: 600;
    text-decoration: none;
}

.notif-link:hover {
    text-decoration: underline;
}

.badge-notif {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.25rem;
    font-weight: 700;
}

/* ========== ADMIN MENSAGENS ========== */
.mensagens-lista {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.msg-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.msg-item:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.msg-nao-lida {
    background: #fef3c7;
    border-color: #f59e0b;
}

.msg-nao-lida:hover {
    background: #fde68a;
}

.msg-respondida {
    opacity: 0.7;
}

.msg-status {
    width: 80px;
    flex-shrink: 0;
}

.msg-badge-new {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
}

.msg-badge-replied {
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 500;
}

.msg-info {
    flex: 1;
    min-width: 0;
}

.msg-from {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.msg-subject {
    color: var(--text);
    margin-bottom: 0.25rem;
}

.msg-preview {
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.msg-date {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-light);
    flex-shrink: 0;
}

/* Detalhe da Mensagem */
.msg-detail {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.msg-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--primary-bg);
    flex-wrap: wrap;
    gap: 1rem;
}

.msg-detail-from strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.msg-detail-from a {
    color: var(--primary);
    text-decoration: none;
}

.msg-detail-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.msg-detail-subject {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.msg-detail-subject .label {
    color: var(--text-light);
    font-size: 0.85rem;
}

.msg-detail-body {
    padding: 1.5rem 1.25rem;
    line-height: 1.7;
    min-height: 150px;
}

.msg-detail-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .msg-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .msg-status {
        width: auto;
    }
    
    .msg-date {
        text-align: left;
    }
    
    .msg-detail-actions {
        flex-direction: column;
    }
    
    .msg-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== TOP 15 - 3 COLUNAS ========== */
.top15-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    gap: 0.5rem;
}

.top15-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s ease;
}

.top15-card:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.top15-rank {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--bg);
    border-radius: 8px;
    flex-shrink: 0;
}

/* Top 3 com medalhas */
.top15-card.rank-gold .top15-rank,
.top15-card.rank-silver .top15-rank,
.top15-card.rank-bronze .top15-rank {
    font-size: 1.1rem;
    background: transparent;
}

.top15-card.rank-gold {
    background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%);
    border-color: #fbbf24;
}

.top15-card.rank-silver {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: #cbd5e1;
}

.top15-card.rank-bronze {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    border-color: #fdba74;
}

.top15-info {
    flex: 1;
    min-width: 0;
}

.top15-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text);
}

.top15-info p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0.15rem 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top15-views {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
    background: var(--primary-bg);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .top15-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-flow: row;
    }
}

@media (max-width: 600px) {
    .top15-grid {
        grid-template-columns: 1fr;
    }
    
    .top15-card {
        padding: 0.65rem 0.85rem;
    }
    
    .top15-info h4 {
        font-size: 0.85rem;
    }
}

/* ========== FOOTER BTN BRANCO ========== */
.footer-btn {
    color: white !important;
}
/* =====================================================
   ADICIONAR NO FINAL DO SEU /assets/css/style.css
   ===================================================== */

/* Botão Favoritar - Elegante e Minimalista */
.btn-favoritar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    user-select: none;
}

.btn-favoritar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-favoritar:hover::before {
    width: 300px;
    height: 300px;
}

.btn-favoritar:hover {
    border-color: #ff6b6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-favoritar-icon {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-favoritar:hover .btn-favoritar-icon {
    transform: scale(1.2) rotate(10deg);
}

.btn-favoritar-text {
    position: relative;
    z-index: 1;
}

.btn-favoritar.favoritado {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-color: #ff6b6b;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

.btn-favoritar.favoritado::before {
    width: 0;
    height: 0;
}

.btn-favoritar.favoritado:hover {
    background: linear-gradient(135deg, #ee5a6f 0%, #ff6b6b 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn-favoritar.favoritado .btn-favoritar-icon {
    animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(0.9); }
    20%, 40%, 60%, 80% { transform: scale(1.15); }
    50%, 70% { transform: scale(1.05); }
}

.btn-favoritar:active {
    transform: translateY(0) scale(0.95);
}

.btn-favoritar.favoriting {
    animation: pulse 0.4s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.heart-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 1.2rem;
}

@keyframes particle-float-0 { to { transform: translate(30px, -50px) rotate(45deg); opacity: 0; } }
@keyframes particle-float-1 { to { transform: translate(50px, -30px) rotate(90deg); opacity: 0; } }
@keyframes particle-float-2 { to { transform: translate(50px, 30px) rotate(135deg); opacity: 0; } }
@keyframes particle-float-3 { to { transform: translate(30px, 50px) rotate(180deg); opacity: 0; } }
@keyframes particle-float-4 { to { transform: translate(-30px, 50px) rotate(225deg); opacity: 0; } }
@keyframes particle-float-5 { to { transform: translate(-50px, 30px) rotate(270deg); opacity: 0; } }
@keyframes particle-float-6 { to { transform: translate(-50px, -30px) rotate(315deg); opacity: 0; } }
@keyframes particle-float-7 { to { transform: translate(-30px, -50px) rotate(360deg); opacity: 0; } }

@media (max-width: 768px) {
    .btn-favoritar {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .btn-favoritar-icon {
        font-size: 1.1rem;
    }
}

/* =====================================================
   FIM DO CSS
   ===================================================== */
