:root {
    --bg-color: #0f172a; /* Esmaecido escuro para dar tom mais moderno */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent: #3b82f6;
    
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
}

/* Background Animated Gradient Orbs */
.background-animation {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: #0f172a;
}
.background-animation::before,
.background-animation::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: move 20s infinite alternate;
}
.background-animation::before {
    background: #4ade80; /* tom de esmeralda/esperança */
    top: -200px;
    left: -200px;
}
.background-animation::after {
    background: #3b82f6; /* azul */
    bottom: -200px;
    right: -200px;
    animation-delay: -10s;
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Container */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 900px;
    width: 95%;
    margin: 3rem 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Header & Logo */
.header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo-placeholder {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-placeholder img {
    width: 100%;
    max-height: 180px; /* Allow it to be taller so we can crop */
    object-fit: contain;
    margin-top: -30px; /* Remove extra top transparent space */
    margin-bottom: -30px; /* Remove extra bottom transparent space */
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    color: #fcd34d;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #f59e0b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.catchphrase {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 300;
}

/* Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card:hover {
    background: var(--card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card h2 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
}

.card h2 i {
    color: var(--accent);
}

.card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.card a, .card p {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.hover-link i {
    width: 20px;
    text-align: center;
    margin-right: 0.5rem;
}

/* Action Button */
.action-btn {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa !important;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(59, 130, 246, 0.3);
    margin-top: auto;
}

.action-btn:hover {
    background: #3b82f6;
    color: #fff !important;
    border-color: #3b82f6;
}

/* Schedule List */
.schedule-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
    font-size: 0.95rem;
}
.schedule-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.schedule-list span {
    font-weight: 600;
    color: #cbd5e1;
}

/* PIX card */
.pix-key {
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s ease;
}
.pix-key:hover {
    background: rgba(255,255,255,0.1);
}
.pix-key span {
    font-family: monospace;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}
#copyToast {
    text-align: right;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: -0.5rem;
}

/* Social Section */
.social-section {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.social-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.social-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.social-btn.instagram:hover { background: #e1306c; border-color: #e1306c; }
.social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-btn.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-btn.tiktok:hover { background: #000000; border-color: #69c9d0; }
.social-btn.twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.social-btn.threads:hover { background: #000000; border-color: #ffffff; }

/* Footer */
.footer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .glass-container {
        padding: 2rem 1.5rem;
    }
    .header h1 {
        font-size: 2rem;
    }
    .catchphrase {
        font-size: 1.1rem;
    }
}
