/* Estilos compartidos de Srapido */
body {
    font-family: 'DM Sans', sans-serif;
    background: #FFFFFF;
    color: #374151;
}

.gradient-text {
    background: linear-gradient(135deg, #65A30D, #84cc16);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(101,163,13,0.08), #fff 50%, rgba(234,88,12,0.05));
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,100% { box-shadow: 0 0 20px rgba(101,163,13,0.2); }
    50% { box-shadow: 0 0 40px rgba(101,163,13,0.4); }
}

.slide-in {
    animation: slideIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideIn {
    to { opacity: 1; transform: translateY(0); }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #65A30D, #EA580C);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.progress-bar {
    background: linear-gradient(90deg, #65A30D, #84cc16);
}

.prize-badge {
    background: linear-gradient(135deg, #EA580C, #f97316);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.region-tag {
    background: rgba(101,163,13,0.1);
    border: 1px solid rgba(101,163,13,0.3);
    color: #65A30D;
}

.modal-overlay {
    background: rgba(17,24,39,0.9);
    backdrop-filter: blur(8px);
}

.dark-section {
    background: #111827;
    color: #fff;
}

/* Form styles */
.form-input {
    width: 100%;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: #374151;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #65A30D;
    box-shadow: 0 0 0 3px rgba(101, 163, 13, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-label {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Success animation */
.success-check {
    animation: checkmark 0.5s ease-in-out forwards;
}

@keyframes checkmark {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* Button hover effects */
.btn-primary {
    background: linear-gradient(to right, #65A30D, #4d7c0f);
    color: white;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(101, 163, 13, 0.3);
}

.btn-secondary {
    border: 2px solid rgba(17, 24, 39, 0.2);
    color: #111827;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(17, 24, 39, 0.05);
}

/* Admin Styles */
.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #9ca3af;
    border-radius: 0.75rem;
    transition: all 0.2s;
    font-weight: 500;
}

.admin-nav-item:hover {
    background: rgba(101, 163, 13, 0.1);
    color: #65A30D;
}

.admin-nav-item.active {
    background: linear-gradient(90deg, #65A30D, #4d7c0f);
    color: white;
}
