/* Login e utilitários do index.html */
.login-container {
    width: 100%;
    max-width: 400px;
    background: var(--panel, #fff);
    padding: 40px;
    border-radius: var(--radius, 12px);
    text-align: center;
    border: 1px solid var(--border, #e5e7eb);
    box-shadow: var(--shadow, 0 2px 8px rgba(0,0,0,0.05));
}
.login-container h2 {
    color: var(--primary, #C5A447);
    margin-bottom: 10px;
}
.login-container p {
    color: var(--text-muted, #6b7280);
    margin-bottom: 20px;
}
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: var(--bg, #fff);
    border: 1px solid var(--border, #e5e7eb);
    color: var(--text, #0F172A);
    border-radius: 5px;
    box-sizing: border-box;
}
.btn-gold-gradient {
    width: 100%;
    padding: 12px 20px;
    border-radius: 5px;
    margin-top: 10px;
}
.error-msg {
    color: #ff5555;
    margin-bottom: 15px;
    background: rgba(255, 85, 85, 0.1);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ff5555;
}
:root {
    --gold-primary: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B38728;
}

/* Text Colors */
.text-gold { color: var(--gold-primary) !important; }
.text-gold-light { color: var(--gold-light) !important; }

/* Backgrounds */
.bg-gold { background-color: var(--gold-primary) !important; }

/* Borders */
.border-gold { border-color: var(--gold-primary) !important; }

/* 3D Gold Gradient Button */
.btn-gold-gradient {
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    background-size: 200% 200%;
    color: #000000 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold-gradient:hover {
    background-position: right center;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Gradient Text */
.text-gradient-gold {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #AA771C) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important; /* Adicionado para consistência */
}

/* Animação de Scroll Infinito (Marquee) */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-scroll {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}
.animate-scroll:hover {
    animation-play-state: paused;
}

/* Animação CSS para blobs */
@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}