/* Dicas da Dani - Mobile First Design */

/* Container principal das dicas */
.dani-tips {
    margin: 30px auto;
    max-width: 800px;
    background: linear-gradient(135deg, #fff9f0 0%, #fff3e6 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #f0e6d6;
}

.dani-tips.hidden {
    display: none;
}

/* Header das dicas */
.dani-tips-header {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.dani-tips-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.dani-tips-header h3 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dani-tips-header i {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.dani-subtitle {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Conteúdo das dicas */
.tips-content {
    padding: 20px;
}

.tip {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 15px;
    border-left: 4px solid #ff8c42;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.tip:last-child {
    margin-bottom: 0;
}

.tip.success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #f0fff4 100%);
}

.tip.warning {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.tip.info {
    border-left-color: #007bff;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.tip.error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
}

.tip h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip p {
    margin: 0;
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
}



/* Responsivo para tablets */
@media (min-width: 768px) {
    .dani-tips {
        margin: 40px auto;
    }
    
    .dani-tips-header {
        padding: 25px;
    }
    
    .dani-tips-header h3 {
        font-size: 1.7rem;
    }
    
    .tips-content {
        padding: 25px;
    }
    
    .tip {
        padding: 20px;
    }
    

}

/* Responsivo para desktop */
@media (min-width: 1024px) {
    .dani-tips {
        margin: 50px auto;
    }
    
    .dani-tips-header {
        padding: 30px;
    }
    
    .tips-content {
        padding: 30px;
    }
    
    .tip {
        padding: 24px;
        margin-bottom: 18px;
    }
    
    .tip h4 {
        font-size: 1.1rem;
    }
    
    .tip p {
        font-size: 1rem;
    }
    

}

/* Animações sutis */

/* Dark mode friendly */
/* Indicador de IA */
.ai-indicator {
    margin-bottom: 15px;
}

.ai-indicator i {
    margin-right: 8px;
    animation: brain-pulse 2s infinite;
}

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

@media (prefers-color-scheme: dark) {
    .tip {
        background: rgba(255,255,255,0.95);
    }
}